-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (50 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
54 lines (50 loc) · 1.1 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
49
50
51
52
53
54
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "nrel.demos"
version = "1.0.1"
description = "DEMOS is a demographic simulation tool."
readme = "README.md"
authors = [{ name = "National Laboratory of the Rockies" }, { name = "Lawrence Berkley National Laboratory" }]
# license = {}
classifiers = [
"Programming Language :: Python :: 3.10"
]
keywords = ["simulation", "demographic", "agent-based"]
dependencies = [
"pandas==2.3.1",
"numpy==2.2.6",
"orca==1.8",
"patsy==1.0.1",
"pydantic==2.11.7",
"pyyaml==6.0.2",
"toml==0.10.2",
"toolz==1.0.0",
"scipy==1.15.2",
"statsmodels==0.14.5",
"loguru==0.7.3"
]
requires-python = ">= 3.10"
[tool.setuptools]
packages = ["demos"]
[project.urls]
Homepage = "https://github.com/NatLabRockies/DEMOS"
[project.optional-dependencies]
reporting = [
"ipykernel",
"matplotlib",
"seaborn",
]
docs = [
"sphinx>=6.0",
"sphinx-rtd-theme",
"myst-parser",
"sphinx-autodoc-typehints",
"sphinxcontrib-napoleon",
"furo",
"sphinx-multiversion"
]
dev = [
"black"
]