-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPipfile
44 lines (39 loc) · 1006 Bytes
/
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
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
ipython = "*"
mypy = "*"
black = "*"
autoflake = "*"
isort = "*"
pytest = "*"
pytest-mock = "*"
pytest-cov = "*"
[packages]
elex = "*"
psycopg2-binary = "*"
environs = "*"
sentry-sdk = "*"
pydantic = "*"
pyhumps = "*"
boto3 = "==1.14.63"
botocore = "==1.17.63"
jsonschema = "*"
ddtrace = "*"
pygsheets = "*"
pytz = "*"
[requires]
python_version = "3.7"
[scripts]
autoflake = "autoflake --remove-unused-variables --remove-all-unused-imports --ignore-init-module-imports -i --recursive enip_backend"
isort = "isort --recursive enip_backend"
black = "black enip_backend"
mypy = "mypy enip_backend --strict-optional"
format = "bash -c 'pipenv run autoflake && pipenv run isort && pipenv run black'"
pytest = "pytest ./enip_backend/export"
pytest_cov = "pytest ./enip_backend/export --cov enip_backend --cov-report xml:cov.xml"
ci = "bash -c 'pipenv run mypy && pipenv run pytest'"
[pipenv]
allow_prereleases = true