-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpyproject.toml
85 lines (79 loc) · 2.28 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
[build-system]
requires = ["setuptools>=64.0", "setuptools-scm[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "solar-data-tools"
description = "Tools for performing common tasks on solar PV data signals"
readme = "README.md"
license.file = "LICENSE"
authors = [
{ name = "Bennet Meyers", email = "[email protected]" },
]
maintainers = [
{ name = "Sara Miskovich", email = "[email protected]" },
]
keywords = ["solar", "pv", "photovoltaic"]
requires-python = ">=3.9"
dependencies = [
"scipy",
"numpy",
"pandas",
"scikit-learn",
"jupyter",
"matplotlib",
"seaborn",
"requests",
"pvlib",
"cvxpy",
"pykml",
"haversine",
"smart_open",
"sig-decomp",
"clarabel",
"qss",
"tqdm",
"spcqe"
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
dynamic = ["version"]
[tool.setuptools_scm]
version_file = "solardatatools/_version.py"
[tool.setuptools.packages.find]
include = ["solardatatools*", "pvsystemprofiler*", "statistical_clear_sky*", "sdt_dask*"]
[project.optional-dependencies]
docs = [
"sphinx",
"pydata-sphinx-theme",
"sphinx_design",
"nbsphinx",
"myst-parser"
]
mosek = [
"mosek"
]
dask = [
"numpy==2.0", # to match provided sdt docker image
"dask==2024.5.2", # to match provided sdt docker image
"distributed==2024.5.2", # to match provided sdt docker image
"dask-cloudprovider[all]==2022.10.0",
"graphviz", # for local task graph visualization
"bokeh" # for local task graph visualization
]
[project.urls]
Homepage = "https://github.com/slacgismo/solar-data-tools"
Documentation = "https://solar-data-tools.readthedocs.io/"
"Bug Tracker" = "https://github.com/slacgismo/solar-data-tools/issues"
Discussions = "https://github.com/slacgismo/solar-data-tools/discussions"