forked from EvolvedEnergyResearch/EnergyPATHWAYS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (49 loc) · 1.08 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[project]
name = "energyPATHWAYS"
version = '2024.03.15'
authors = [
{ name = "Ben Haley"},
{ name = "Ryan Jones"},
]
maintainers = [
{ name = "Luca Bonaldo"},
{ name = "Greg Schivley"},
]
description = 'Software package for long-term energy system modeling'
readme = "README.md"
requires-python = "==3.10.*"
license = { text = "MIT" }
dependencies = [
'pandas==1.5.*',
'numpy',
'scipy',
'pint',
'datetime',
'pathos',
'pytz',
'matplotlib',
'click',
'numpy_financial',
'sphinx_rtd_theme',
'toml',
"csvdb@git+https://github.com/EvolvedEnergyResearch/csvdb",
"xlwings",
]
[project.optional-dependencies]
documentation = [
"Sphinx"
]
dev = [
"black"
]
[project.scripts]
energyPATHWAYS = "energyPATHWAYS.run:click_run"
EP2RIO = "energyPATHWAYS.export_to_rio:click_run"
[project.urls]
Source = "https://github.com/energyPATHWAYS/energyPATHWAYS"
Documentation = "https://energypathways.readthedocs.io"