forked from PowerGenome/PowerGenome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
71 lines (61 loc) · 1.7 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 = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "PowerGenome"
dynamic = ["version"]
authors = [{ name = "Greg Schivley", email = "[email protected]" }]
maintainers = [
{ name = "Greg Schivley", email = "[email protected]" },
]
description = "Create power system inputs for capacity expansion models"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["power system data", "capacity expansion", "two"]
license = { text = "MIT" }
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
]
dependencies = [
"catalystcoop.pudl>=0.6.0, <=2022.11.30",
"beautifulsoup4 >= 4.8.13",
"statsmodels>=0.12.2",
"python-dotenv",
"flatten-dict",
"ruamel.yaml",
"pyyaml",
"frozendict",
"openpyxl>=3.0",
"geopandas>=0.11",
]
[tool.hatch.version]
path = "powergenome/version.py"
[tool.hatch.build.targets.sdist]
only-include = ["powergenome", "data"]
exclude = ["/data/eia*"]
[tool.hatch.build.targets.wheel]
only-include = ["powergenome", "data"]
exclude = ["/data/eia*"]
[project.optional-dependencies]
dev = [
"black[jupyter] == 24.3.0",
"pre-commit",
"pytest",
"isort",
"build",
"twine",
]
[project.scripts]
run_powergenome_multiple = "powergenome.run_powergenome_multiple_outputs_cli:main"
[project.urls]
"Source" = "https://github.com/PowerGenome/PowerGenome"
[tool.isort]
profile = "black"