-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
45 lines (40 loc) · 1.09 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
[tool.poetry]
name = "atmospy"
version = "0.1.0a5"
description = "Data analysis and visualization for air quality data."
authors = ["David H Hagan <[email protected]>"]
license = "Apache-2.0"
maintainers = []
readme = "README.md"
homepage = "https://github.com/dhhagan/atmospy/"
repository = "https://github.com/dhhagan/atmospy/"
documentation = "https://dhhagan.github.io/atmospy/"
packages = [
{ include = "atmospy" },
]
[tool.poetry.dependencies]
python = ">=3.8"
pandas = ">=1.2"
numpy = ">=1.20,<1.24.0 || >1.24.0"
matplotlib = ">=3.4,<3.6.1 || >3.6.1"
seaborn = ">=0.12"
scipy = ">=1.7"
# [tool.poetry.dev-dependencies]
# pytest = "^6.2.4"
# pytest-cov = "^2.12.1"
# jupyter = "^1.0.0"
# Sphinx = "^4.0.2"
# pandoc = "^1.0.2"
# sphinx-bootstrap-theme = "^0.7.1"
# numpydoc = "^1.1.0"
# sphinx-issues = "^1.2.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.1"
pytest-cov = "^5.0.0"
ipykernel = "^6.29.4"
jupyter = "^1.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/quant-aq/atmospy/issues"