forked from FAForever/server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pipfile
43 lines (39 loc) · 1.05 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
[scripts]
devserver = "python server.py --configuration-file dev-config.yml"
tests = "py.test --doctest-modules --doctest-continue-on-failure --cov-report term-missing --cov=server --mysql_database=faf -o testpaths=tests -m 'not rabbitmq'"
integration = "py.test -o testpaths=integration_tests"
vulture = "vulture server.py server/ --sort-by-size"
doc = "pdoc3 --html --force server"
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
typing = "*"
aiohttp = "*"
prometheus_client = "*"
docopt = "*"
maxminddb = "*"
trueskill = "*"
aiocron = "*"
oauthlib = "*"
sqlalchemy = "*"
twilio = ">=6.0.0,<6.51.0" # See https://github.com/twilio/twilio-python/issues/556
humanize = ">=2.6.0"
aiomysql = {editable = true, git = "https://github.com/aio-libs/aiomysql"}
pyyaml = "*"
aio_pika = "*"
pyjwt = {version = ">=2", extras = ["crypto"]}
uvloop = "*"
[dev-packages]
pytest = "*"
pytest-mock = "*"
pytest-cov = "*"
pytest-asyncio = "==0.12.0"
mock = "*"
vulture = "*"
asynctest = "*"
hypothesis = "*"
pdoc3 = "*"
[requires]
python_version = "3.7"