-
Notifications
You must be signed in to change notification settings - Fork 24
/
Pipfile
45 lines (42 loc) · 1.26 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.1"
asyncio-mqtt = "~=0.16.2"
gurux-dlms = "==1.0.150"
paho-mqtt = "~=1.6.1"
[dev-packages]
autopep8 = "*"
chardet = "*"
isort = "*"
licenseheaders = "*"
pipenv-setup = "*"
plette = "~=0.4"
pylint = "*"
pytest = "*"
pytest-asyncio = "*"
pytest-mock = "*"
setuptools = "*"
stdeb = {version="*", markers="sys_platform == 'linux'"}
twine = "*"
vistir = "~=0.6.1"
wheel = "*"
[scripts]
build = "bash ./scripts/build.sh"
build_check = "twine check dist/*"
build_deb = "bash ./scripts/build_deb.sh"
build_srcdeb = "bash ./scripts/build_srcdeb.sh"
clean = "rm -rf .eggs build dist deb_dist smartmeter_datacollector.egg-info"
debianize = "bash ./scripts/debianize.sh"
format = "autopep8 --in-place -r --aggressive smartmeter_datacollector/"
format_check = "autopep8 --diff -r --aggressive smartmeter_datacollector/"
isort = "isort ."
isort_check = "isort --check ."
license = "licenseheaders -t .copyright.tmpl --ext py --current-year --owner 'Supercomputing Systems AG' --projname 'smartmeter-datacollector'"
lint = "pylint smartmeter_datacollector/"
lint_check = "pylint smartmeter_datacollector/ --exit-zero"
setup = "pipenv-setup sync"
setup_check = "pipenv-setup check"
test = "pytest"