-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
71 lines (64 loc) · 1.82 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
60
61
62
63
64
65
66
67
68
69
70
71
[build-system]
requires = ["setuptools>=63.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "nrel.hive"
version = "1.2.2"
description = "HIVE is a mobility services research platform developed by the Mobility and Advanced Powertrains (MBAP) group at the National Renewable Energy Laboratory in Golden, Colorado, USA."
readme = "README.md"
authors = [{ name = "National Renewable Energy Laboratory" }]
license = { text = "BSD 3-Clause License Copyright (c) 2022, Alliance for Sustainable Energy, LLC" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering",
]
keywords = ["simulation", "transportation", "ride-sharing", "agent-based"]
dependencies = [
"immutables",
"numpy",
"pandas",
"networkx",
"PyYAML",
"tqdm",
"rich",
"h3 < 4",
"scipy",
"returns",
]
requires-python = ">=3.8"
[project.optional-dependencies]
docs = [
"sphinx",
"sphinx-autoapi",
"sphinx-rtd-theme",
"sphinxemoji",
"myst-parser",
"sphinx-autodoc-typehints",
]
dev = [
"nrel.hive[docs]",
"pytest",
"black==23.1.0",
"mypy",
"twine",
"types-PyYAML",
"types-setuptools",
]
[project.urls]
Homepage = "https://github.com/NREL/hive"
[project.scripts]
hive = "nrel.hive.app.run:run"
hive-batch = "nrel.hive.app.run_batch:run"
[tool.black]
line-length = 100
[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
include = ["nrel*"] # package names should match these glob patterns (["*"] by default)
exclude = ["rust*"]
[tool.setuptools.package-data]
"*" = ["py.typed"]