forked from csdms/bmi-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
48 lines (43 loc) · 1.31 KB
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
[build-system]
requires = ["setuptools >=61"]
build-backend = "setuptools.build_meta"
[project]
name = "bmipy"
description = "Basic Model Interface for Python"
readme = "README.rst"
authors = [
{name = "Eric Hutton", email = "huttone@colorado.edu"},
]
keywords = ["BMI", "Basic Model Interface"]
license = {text = "MIT"}
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Hydrology",
"Topic :: Scientific/Engineering :: Physics",
]
requires-python = ">=3.7"
dependencies = [
"black",
"click",
"jinja2",
"numpy",
]
dynamic = ["version"]
[project.scripts]
bmipy-render = "bmipy.cmd:main"
[project.urls]
Documentation = "https://bmi.readthedocs.io"
Source = "https://github.com/csdms/bmi-python"
[tool.setuptools.dynamic]
version = {attr = "bmipy._version.__version__"}
[tool.setuptools.packages.find]
include = ["bmipy", "bmipy.*"]