forked from scs/smartmeter-datacollector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPipfile
45 lines (41 loc) · 1.24 KB
/
Pipfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
aioserial = "~=1.3.0"
asyncio-mqtt = "~=0.10.0"
gurux-dlms = "==1.0.107"
[dev-packages]
autopep8 = "*"
chardet = "*"
isort = "*"
licenseheaders = "*"
pipenv-setup = "*"
pylint = "*"
setuptools = "*"
stdeb = {version="*", markers="sys_platform == 'linux'"}
twine = "*"
wheel = "*"
pytest = "*"
pytest-mock = "*"
pytest-asyncio = "*"
[requires]
python_version = "3.8"
[scripts]
build = "bash ./scripts/build.sh"
build_check = "twine check dist/*"
build_srcdeb = "bash ./scripts/build_srcdeb.sh"
build_deb = "bash ./scripts/build_deb.sh"
clean = "rm -rf .eggs build dist deb_dist smartmeter_datacollector.egg-info"
debianize = "bash ./scripts/debianize.sh"
format_check = "autopep8 --diff -r --aggressive smartmeter_datacollector/"
format = "autopep8 --in-place -r --aggressive smartmeter_datacollector/"
isort = "isort ."
isort_check = "isort --check ."
lint = "pylint smartmeter_datacollector/"
lint_check = "pylint smartmeter_datacollector/ --exit-zero"
license = "licenseheaders -t .copyright.tmpl --ext py --current-year --owner 'Supercomputing Systems AG' --projname 'smartmeter-datacollector'"
setup = "pipenv-setup sync"
setup_check = "pipenv-setup check"
test = "pytest"