-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
39 lines (34 loc) · 1.13 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = 'openwater'
description = "Hydrological modelling system"
keywords = ["hydrology", "scripting", "simulation"]
license = {text = "MIT License"}
version = "0.1"
readme = {file = "README.md", content-type = "text/markdown"}
# dependencies = ["numpy", "pandas", "Cython", "graphviz", "networkx", "h5py", "rasterio", "taudem"]
authors = [
{name = "Joel Rahman", email = "[email protected]"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules"
]
# dynamic = ["test_suite"]
[project.urls]
Homepage = "https://github.com/flowmatters/openwater"
[project.optional-dependencies]
test = ["pytest"]
[tool.setuptools.packages.find]
[tools.setuptools]
include-package-data = true
zip-safe = true