-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (46 loc) · 1023 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
43
44
45
46
47
48
49
50
51
[tool.poetry]
name = "sky-alert"
version = "0.1.0"
description = "Alert that combines information from multiple data sources for what could be a potentially good stargazing / astrophotography night opportunity for your locale."
authors = ["Rohan Sahgal <rohansahgal@hotmail.com>", "Chris Zhu <thereisnoaddress@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
fastapi = "^0.109.1"
uvicorn = "^0.24.0.post1"
python-dotenv = "^1.0.0"
pre-commit = "^3.6.0"
mypy = "^1.7.1"
flake8 = "^6.1.0"
requests = "^2.31.0"
types-requests = "^2.31.0"
pytest = "^7.4.3"
httpx = "^0.26.0"
pydantic = "^2.5.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.mypy]
python_version = "3.11"
disallow_untyped_defs = true
ignore_missing_imports = true
plugins = [
"pydantic.mypy"
]