forked from canada-ca/tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPipfile
More file actions
48 lines (43 loc) · 935 Bytes
/
Pipfile
File metadata and controls
48 lines (43 loc) · 935 Bytes
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
46
47
48
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[requires]
python_version = "3.8"
[dev-packages]
mypy = "*"
pylint = "*"
pytest = "*"
pytest-cov = "*"
pytest-mock = "*"
pre-commit = "*"
[packages]
flask = "*"
graphene-sqlalchemy = "*"
flask-graphql = "*"
notifications-python-client = "*"
postgres = "*"
psycopg2-binary = "*"
sqlalchemy = "*"
waitress = "*"
graphene = "*"
graphql-core = "*"
flask-script = "*"
flask-migrate = "*"
pyotp = "*"
pyjwt = "*"
python-slugify = "*"
bcrypt = "*"
gql = "*"
[scripts]
test = "python -m pytest"
server = "python application.py"
schema-export = "python schema_export.py"
db-init = 'python manage.py db init'
db-migrate = 'python manage.py db migrate'
db-upgrade = 'python manage.py db upgrade'
db-history = 'python manage.py db history'
db-downgrade = 'python manage.py db downgrade'
db-revision = 'python manage.py db revision'
[pipenv]
allow_prereleases = false