forked from nasa/apod-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 709 Bytes
/
pyproject.toml
File metadata and controls
35 lines (32 loc) · 709 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
[project]
name = "apod-api"
version = "1.1.0"
description = "Astronomy Picture of the Day API service"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"beautifulsoup4>=4.14.3",
"flask>=3.1.2",
"flask-cors>=6.0.2",
"gunicorn>=23.0.0",
"jinja2>=3.1.6",
"pillow>=12.1.1",
"requests>=2.33.0",
"urllib3>=2.6.3",
"werkzeug>=3.1.5",
]
[dependency-groups]
dev = [
"locust>=2.43.2",
"memory-profiler>=0.61.0",
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"ruff>=0.14.13",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
addopts = "--cov=apod --cov-report=term-missing"
pythonpath = ["."]
[tool.ruff.lint]
select = ["I"]