forked from votingworks/arlo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPipfile
43 lines (40 loc) · 934 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
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
mypy = "*"
numpy-stubs = {git = "https://github.com/numpy/numpy-stubs"}
sqlalchemy-stubs = "*"
pytest = "*"
pytest-cov = "*"
pylint = "*"
# black only has pre-releases available, so we have to specify a specific version
# for now (or enable pre-releases for all packages, which we don't want)
black = "==19.10b0"
snapshottest = "*"
pytest-alembic = "*"
pytest-xdist = "*"
filelock = "*"
[packages]
alembic = "*"
authlib = "*"
chardet = "*"
consistent_sampler = "*"
cryptorandom = "*"
flask = "*"
flask-httpauth = "*"
flask-talisman = "*"
joblib = "*"
jsonschema = "*"
numpy = "*"
psycopg2-binary = "*"
requests = "*"
# sqlalchemy-utils 0.36.8 introduced a bug
# Can probably reset this to * once the next patch comes out
sqlalchemy-utils = "==0.36.7"
xkcdpass = "*"
sqlalchemy = "*"
typing-extensions = "*"
[requires]
python_version = "3.8"