summaryrefslogtreecommitdiff
path: root/Pipfile
blob: 4356e0c7ab18333e1dbfa7f3747e2d293d953063 (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
[[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 = "*"

[scripts]
format = "black iss"
lint = "pylint -j 0 -d R,C iss"
test = "pytest"
server = "uvicorn iss.server:app"

[requires]
python_version = "3.8"