blob: 01b5ba8d63a84e3da14d6cb0eb19a71e9430e573 (
plain)
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
|
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
pytest = "*"
black = "==19.10b0"
pylint = "*"
pre-commit = "*"
[packages]
pyephem = "*"
skyfield = "*"
fastapi = "*"
uvicorn = "*"
jinja2 = "*"
aiofiles = "*"
geoip2 = "*"
zappa = {editable = true, git = "https://github.com/yuvadm/Zappa/", ref = "asgi"}
[scripts]
format = "black iss"
lint = "pylint -j 0 -d R,C iss"
test = "pytest iss/tests"
compare = "pytest iss/tests --compare"
server = "uvicorn iss.server:app"
[requires]
python_version = "3.8"
|