-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
66 lines (58 loc) · 1.78 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
[build-system]
requires = [
"setuptools>61", # start of support for pyproject.toml/PEP 621. https://setuptools.pypa.io/en/stable/history.html#v61-0-0
"setuptools-scm",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm] # set version dynamically
[tool.setuptools]
include-package-data = false # necessary for exclude to work
[tool.setuptools.packages.find]
exclude = [
"twoaxistracking.tests*",
"docs*",
]
[project]
name = "twoaxistracking"
authors = [
{name = "Adam R. Jensen"},
{name = "Kevin S. Anderson"},
{email = "[email protected]"},
]
description = "twoaxistracking is a python package for simulating two-axis tracking solar collectors, particularly self-shading."
readme = "README.md"
requires-python = ">=3.9"
keywords = ["solar energy", "photovoltaics", "solar collector", "shading"]
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
]
dependencies = [
"numpy",
"matplotlib",
"shapely",
"pandas",
]
dynamic = ["version"]
[project.optional-dependencies]
test = ["pytest", "pytest-cov", "packaging"]
doc = [
"sphinx==8.1.1",
"myst-nb==1.1.2",
"sphinx-book-theme==1.1.3",
"pvlib==0.11.1",
"pandas==2.2.3",
]
[project.urls]
Documentation = "https://twoaxistracking.readthedocs.io"
Issues = "https://github.com/pvlib/twoaxistracking/issues"
Repository = "https://github.com/pvlib/twoaxistracking.git"
[tool.pytest.ini_options]
addopts = "--cov=twoaxistracking --cov-fail-under=100 --cov-report=term-missing"
[tool.coverage.run]
# Do not count the test files themselves toward coverage
omit = ["twoaxistracking/tests/*"]