forked from FAForever/server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPipfile
More file actions
40 lines (36 loc) · 849 Bytes
/
Copy pathPipfile
File metadata and controls
40 lines (36 loc) · 849 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
[scripts]
devserver = "python server.py --configuration-file dev-config.yml"
tests = "py.test --cov-report term-missing --cov=server --mysql_database=faf -o testpaths=tests"
integration = "py.test -o testpaths=integration_tests"
vulture = "vulture server.py server/ --sort-by-size"
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
typing = "*"
aiohttp = "*"
prometheus_client = "*"
docopt = "*"
"geoip2" = "*"
trueskill = "*"
aiocron = "*"
oauthlib = "*"
sqlalchemy = "*"
twilio = "*"
humanize = ">=2.6.0"
aiomysql = {editable = true, git = "https://github.com/aio-libs/aiomysql"}
pyyaml = "*"
aio_pika = "*"
[dev-packages]
pytest = "*"
pytest-mock = "*"
pytest-cov = "*"
pytest-asyncio = "==0.12.0"
coveralls = "*"
mock = "*"
vulture = "*"
asynctest = "*"
hypothesis = "*"
[requires]
python_version = "3.7"