-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
40 lines (35 loc) · 1.17 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = 'veneer-py'
description="Support for scripting eWater Source models through the Veneer (RESTful HTTP) plugin"
keywords = ["hydrology", "ewater", "veneer", "scripting", "http", "rest"]
license = {text = "ISC License"}
version = "0.1"
readme = {file = "README.md", content-type = "text/markdown"}
# dependencies = ["numpy", "pandas"]
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 :: ISC License (ISCL)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[project.urls]
Homepage = "https://github.com/flowmatters/veneer-py"
[project.optional-dependencies]
test = ["nose"]
[tool.setuptools.packages.find]
[tools.setuptools]
include-package-data = true
zip-safe = true
packages = ["veneer","veneer.nodes"]
py_modules=['veneer']