-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
67 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm[toml]>=6.2", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "solarfactors"
dynamic = ["version"]
description = "2D View Factor Model to calculate the irradiance incident on various surfaces of PV arrays"
readme = "README.rst"
authors = [
{name = "SunPower and pvlib python Developers", email = "[email protected]"},
]
license = {text = "BSD 3-Clause"}
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"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",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
]
requires-python = ">=3.8"
dependencies = [
"pvlib>=0.9.0",
"shapely>=2.0",
"matplotlib",
"numpy",
"pandas",
]
[project.optional-dependencies]
test = [
"pytest>=3.2.1",
"pytest-mock>=1.10.0",
"mock",
]
doc = [
"sphinx",
"sphinx_rtd_theme",
"nbsphinx",
"sphinxcontrib_github_alt",
"ipykernel",
]
[project.urls]
"Bug Tracker" = "https://github.com/pvlib/solarfactors/issues"
Documentation = "https://solarfactors.readthedocs.io/"
"Source Code" = "https://github.com/pvlib/solarfactors"
[tool.setuptools]
packages = [
"pvfactors",
"pvfactors.geometry",
"pvfactors.irradiance",
"pvfactors.viewfactors",
]
[tool.setuptools.exclude-package-data]
pvfactors = ["tests"]
[tool.setuptools_scm]