-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
42 lines (40 loc) · 950 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "missioncontrol"
version = "0.0.1"
description = "Mission Planning for Large Constellations"
authors = ["Louis des Landes <[email protected]>"]
license = "Apache-2.0"
[tool.poetry.dependencies]
python = "^3.6"
django = {extras = ["argon2"],version = "<2.3.0"}
requests = "*"
pytz = "*"
connexion = {extras = ["swagger-ui"],version = ">=2.6.0"}
gunicorn = "*"
psycopg2-binary = "*"
whitenoise = {extras = ["brotli"],version = "*"}
pytest-django = "*"
bitarray = "*"
slackclient = "*"
astropy = "*"
skyfield = "*"
ipdb = "*"
pycrypto = "*"
scipy = "*"
python-jose = "*"
tabulate = "*"
django-environ = "*"
python-dateutil = "*"
importlib-metadata = "*"
[tool.poetry.dev-dependencies]
pylint = "*"
"autopep8" = "*"
yapf = "*"
rope = "*"
django-debug-toolbar = "*"
django-extensions = "*"
pre-commit = "*"
pytest-pythonpath = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"