-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 858 Bytes
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 858 Bytes
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 = "astronomynotifier"
version = "0.1.0"
description = "Poetry for our group project"
authors = ["Your Name <you@example.com>"]
license = "Apache 2.0"
readme = "README.md"
packages = [
{ include = "src", from = "."},
]
[tool.poetry.dependencies]
python = "^3.11"
pip = "^24.3.1"
app = "^0.0.1"
geocoder = "^1.38.1"
pytest = "^8.3.3"
quart = "^0.19.8"
pytest-asyncio = "^0.24.0"
requests = "^2.32.3"
astronomy-engine = "^2.1.19"
httpx = "^0.27.2"
ephem = "^4.1.6"
skyfield = "^1.49"
geopy = "^2.4.1"
pytest-mock = "^3.14.0"
pytest-cov = "^6.0.0"
pip-audit = "^2.7.3"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
nasapi = "^0.0.5"
httpx = "^0.27.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = ["src"]