generated from JGCRI/pytemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (54 loc) · 1.34 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "glory-reservoir"
description = "A python package for estimating global reservoir yield and costs for water supply."
readme = "README.md"
version = "0.1.0"
requires-python = ">=3.9"
license = {file = "LICENSE"}
authors = [
{name = "Mengqi Zhao", email = "mengqi.zhao@pnnl.gov"}
]
maintainers = [
{name = "Mengqi Zhao", email = "mengqi.zhao@pnnl.gov"}
]
dependencies = [
"requests>=2.25.1",
"pandas>=1.5",
"numpy>=1.23,<2", # pyomo is not yet compatible with numpy 2
"scipy>=1.11.2",
"pyomo>=6.6.2",
"matplotlib>=3.7.2",
"PyYAML>=5.4.1",
"toml>=0.10.2"
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.optional-dependencies]
test = [
"pytest>=6.0",
]
docs = [
"ipykernel>=6.15.1",
"autodoc>=0.5.0",
"nbsphinx~=0.8.6",
"sphinx~=7.2.6",
"sphinx-design~=0.5.0",
"sphinx-rtd-theme~=2.0.0",
"sphinx-mathjax-offline~=0.0.2"
]
deploy = [
"twine>=4.0.1",
]
[project.urls]
Repository = "https://github.com/JGCRI/glory"
Documentation = "https://jgcri.github.io/glory"
[tool.hatch.build]
packages = ["glory"] # set importable package name to "glory"
include = ["glory"]