File: README.md

package info (click to toggle)
python-proton-core 0.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 568 kB
  • sloc: python: 3,672; makefile: 19
file content (22 lines) | stat: -rw-r--r-- 431 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Proton core

The `proton-core` component contains core logic used by the other Proton components.

## Development

Even though our CI pipelines always test and build releases using Linux distribution packages,
you can use pip to setup your development environment as follows:

```shell
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
```

### Tests

You can run the tests with:

```shell
pytest
```