-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
78 lines (74 loc) · 2.01 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pycantphi"
version = "0.1.0"
description = "A Python library for calculating anthropogenic carbon in the North Atlantic Ocean"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{ name = "Raphaël Bajon", email = "[email protected]" },
]
keywords = [
"oceanography",
"carbon",
"climate-science",
"ocean-carbon",
"anthropogenic-carbon",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Oceanography",
"Topic :: Scientific/Engineering :: Atmospheric Science",
]
dependencies = [
"numpy>=1.20.0",
"xarray>=0.16.0",
"pandas>=1.3.0",
"scipy>=1.6.0",
"PyCO2SYS>=1.8.0",
"gsw>=3.3.0", # For oceanographic calculations
"requests>=2.25.0", # For Mauna Loa data download
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=3.0",
"pytest-xdist>=2.5",
"black>=22.0",
"isort>=5.10",
"flake8>=4.0",
"mypy>=0.950",
"pre-commit>=2.20",
]
docs = [
"sphinx>=4.5",
"sphinx-rtd-theme>=1.0",
"sphinx-autodoc-typehints>=1.18",
"myst-parser>=0.18",
]
notebook = [
"jupyter>=1.0",
"matplotlib>=3.5",
"seaborn>=0.11",
]
[project.urls]
Homepage = "https://github.com/RaphaelBajon/PyPhi"
Documentation = "https://cantphi.readthedocs.io"
Repository = "https://github.com/RaphaelBajon/pyphi.git"
"Bug Tracker" = "https://github.com/RaphaelBajon/pyphi/issues"
[tool.setuptools]
packages = ["pycantphi"]
include-package-data = true
[tool.setuptools.package-data]
"pycantphy" = ["data/**/*"]