-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
63 lines (59 loc) · 1.59 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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2", "wheel", "versioneer[toml]"]
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",
"Topic :: Scientific/Engineering",
]
dependencies = [
"pvlib>=0.9.0",
"shapely>=1.6.4.post2,<2",
"matplotlib",
"future",
"six",
]
urls = {Homepage = "https://github.com/pvlib/solarfactors"}
[project.optional-dependencies]
test = [
"pytest>=3.2.1",
"pytest-mock>=1.10.0",
"mock",
]
doc = [
"Sphinx~=4.0",
"sphinx_rtd_theme",
"nbsphinx",
"sphinxcontrib_github_alt",
"ipykernel",
]
[tool.setuptools]
packages = [
"pvfactors",
"pvfactors.geometry",
"pvfactors.irradiance",
"pvfactors.viewfactors",
]
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "pvfactors/_version.py"
versionfile_build = "pvfactors/_version.py"
tag_prefix = ""
parentdir_prefix = "pvfactors-"