-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (59 loc) · 1.34 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[tool.poetry]
name = "perseus"
version = "0.1.0"
description = "observerly's FastAPI of stars, galaxies and other astronomical bodies, adhering to the OpenAAS standard."
authors = ["Michael Roberts <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.11"
fastapi = "0.96.0"
uvicorn = {extras = ["standard"], version = "^0.18.2"}
hypercorn = "^0.14.3"
pydantic = "1.10.6"
email-validator = "^1.1.3"
sqlalchemy = "^1.4.44"
alembic = "^1.8.1"
astropy = "^5.1.1"
orjson = "^3.6.7"
furl = "^2.1.3"
requests = "^2.27.1"
sentry-sdk = "^1.5.10"
fastapi-cache2 = {extras = ["redis"], version = "^0.1.8"}
redis = "^4.0.2"
pymysql = "^1.0.2"
cryptography = "^39.0.1"
cloud-sql-python-connector = {extras = ["pymysql"], version = "^1.1.0"}
[tool.poetry.dev-dependencies]
pytest = "^7.1.1"
flake8 = "^4.0.1"
autoflake = "^1.4"
isort = "^5.10.1"
black = "^22.1.0"
mypy = "^0.931"
tenacity = "^8.0.1"
httpx = "^0.22.0"
anyio = {extras = ["trio"], version = "^3.6.1"}
pytest-asyncio = "^0.18.3"
asgi-lifespan = "^1.0.1"
[tool.black]
exclude = '''
/(
\.git
| \.mypy_cache
| \.tox
| venv
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = false
force_grid_wrap = 0
line_length = 88
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"