-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
105 lines (96 loc) · 2.2 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "pvdeg"
description = "Pvdeg is a python library that supports the calculation of degradation related parameters for photovoltaic (PV) modules."
authors = [{name = "Pvdeg Python Developers", email = "[email protected]"}]
maintainers = [{email = "[email protected]"}]
license = {text = "BSD-3"}
readme = "README.md"
requires-python = ">=3.9.0"
classifiers = [
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
]
keywords = [
"photovoltaic",
"solar",
"degradation",
"analysis",
"performance",
"module",
"PV",
]
dependencies = [
"aiohttp==3.9.5",
"numpy==1.26.4",
"pvlib==0.10.3",
"scipy<1.14.0",
"NREL-rex",
"cartopy",
"dask[dataframe]",
"dask-jobqueue",
"bokeh",
"h5netcdf",
"h5py",
"jupyterlab",
"matplotlib",
"netCDF4",
"notebook",
"numba",
"openpyxl",
"pandas",
"photovoltaic",
"python-dateutil",
"pytz",
"seaborn",
"tables",
"tqdm",
"xarray",
"pre-commit",
"sympy",
]
dynamic = ["version"]
[project.optional-dependencies]
docs = [
"readthedocs-sphinx-search>=0.3.1,<0.4",
"sphinx>=7.2.6,<8",
"sphinx_rtd_theme>=2.0.0,<3",
"sphinx-gallery",
"nbsphinx",
"sphinx_toggleprompt",
"pydata_sphinx_theme",
]
test = [
"pytest",
"pytest-cov",
"sympy",
]
books = [
"jupyter-book",
]
all = [
"pvdeg[docs,test,books]",
]
[project.entry-points.pvdeg]
console_scripts = "pvdeg.cli:cli"
[project.urls]
Homepage = "https://github.com/NREL/PVDegradationTools"
"Bug Tracker" = "https://github.com/NREL/PVDegradationTools/issues"
Documentation = "https://pvdegradationtools.readthedocs.io/"
"Source Code" = "https://github.com/NREL/PVDegradationTools"
[tool.setuptools.packages.find]
include = ["pvdeg"]
[tool.setuptools.package-data]
"pvdeg.data" = ["*.json"]
[tool.setuptools_scm]
[tool.pytest.ini_options]
testpaths = "tests"
addopts = [
"-p no:warnings",
"--verbose",
]