-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
72 lines (64 loc) · 2.37 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
[build-system]
requires = ["setuptools>=61.2", "wheel", "setuptools-git-versioning", ]
build-backend = "setuptools.build_meta"
[tool.setuptools-git-versioning]
enabled = true
template = "{tag}"
dev_template = "{tag}.post{ccount}"
dirty_template = "{tag}.post{ccount}+dirty"
[project]
name = "basin3d"
dynamic = ["version"]
authors = [{ name = "Valerie C Hendrix", email = "[email protected]" },
{ name = "Danielle Svehla Christianson", email = "[email protected]" },
{ name = "Charuleka Varadharajan", email = "[email protected]" },
{ name = "Catherine Wong", email = "[email protected]" }]
maintainers = [
{ name = "Valerie C Hendrix", email = "[email protected]" },
{ name = "Danielle Svehla Christianson", email = "[email protected]" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Hydrology"
]
description = "BASIN-3D Core Framework"
license = { file = "LICENSE" }
readme = "README.md"
requires-python = '>=3.8,<3.11'
dependencies = [
"pandas",
"pydantic<2",
"pyyaml>=6.0",
"requests",
'SQLAlchemy>=1.4',
]
[project.optional-dependencies]
dev = ['pytest', 'pytest-mypy', 'pytest-cov', 'flake8',
'types-PyYAML', 'types-chardet', 'types-cryptography', 'types-requests']
docs = ["sphinx<=6.2.1",
"sphinx-autodoc-typehints<=1.23.0",
"graphviz",
"sphinx_rtd_theme",
"tomli",
"myst-parser"]
[project.urls]
homepage = "https://github.com/BASIN-3D/basin3d"
documentation = "https://basin3d.readthedocs.io/"
repository = "https://github.com/BASIN-3D"
changelog = "https://github.com/BASIN-3D/basin3d/blob/main/CHANGES.md"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["basin3d**"] # package names should match these glob patterns (["*"] by default)
exclude = ["test*"] # exclude packages matching these glob patterns (empty by default)
namespaces = false # to disable scanning PEP 420 namespaces (true by default)
[tool.setuptools.package-data]
basin3d = ["data/*.csv", "plugins/*.csv", "core/logging.yaml"]