-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
77 lines (66 loc) · 1.68 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
72
73
74
75
76
77
[build-system]
requires = ["setuptools >= 64.0"]
build-backend = "setuptools.build_meta"
[project]
name="osier"
version = "0.3.1"
description = "osier: A justice oriented energy system optimization tool"
readme = "README.md"
keywords = ["energy systems", "optimization", "multi-objective", "justice", "multi-criteria decision"]
license = { file = "LICENSE" }
requires-python = ">= 3.9"
dependencies = [
'numpy',
'pandas',
'matplotlib',
'pytest',
'pytest-cov',
'dill',
'openpyxl',
'nrelpy',
'unyt',
'pymoo',
'pyentrp',
'deap',
'pyomo'
]
authors = [
{name = "Sam Dotson", email = "[email protected]"},
]
maintainers = [
{name = "Sam Dotson", email = "[email protected]"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Environment :: Console",
"Natural Language :: English",
"Operating System :: OS Independent"
]
[project.urls]
Homepage = "https://osier.readthedocs.io"
Repository = "https://github.com/arfc/osier"
Issues = "https://github.com/arfc/osier/issues"
[project.optional-dependencies]
doc = [
'sphinx>=5.1',
'sphinx-autobuild',
'myst-parser',
"sphinx_design",
"sphinx-autodoc-typehints",
'numpydoc',
'pydata_sphinx_theme',
'nbsphinx',
'pandoc',
'nbsphinx-link',
]
[tool.setuptools.packages.find]
include = ['osier']
[tool.pytest.ini_options]
addopts = "--cov=osier tests"
[tool.coverage.report]
fail_under = 75