-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (64 loc) · 2.05 KB
/
pyproject.toml
File metadata and controls
71 lines (64 loc) · 2.05 KB
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
[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]
where = ["src"]
[project]
name = "solposx"
authors = [
{name = "Adam R. Jensen"},
{name = "Kevin S. Anderson"},
{name = "Ioannis Sifnaios"},
{name = "Echedey Luis"},
{email = "adam-r-j@hotmail.com"},
]
description = " solposx is a Python package for determining solar position and atmospheric refraction."
readme = "README.md"
requires-python = ">=3.10"
keywords = ["solar position algorithms", "solar energy", "photovoltaics"]
license = "BSD-3-Clause"
license-files = ["LICEN[CS]E*"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
]
dependencies = [
"numpy",
"pandas",
"pvlib",
]
dynamic = ["version"]
[project.optional-dependencies]
optional = ["skyfield", "sg2"]
test = ["pytest>=7", "pytest-cov", "packaging","skyfield>=1.54"]
doc = [
"solposx[optional]",
"sphinx==8.2.3",
"myst-nb==1.1.2",
"sphinx-book-theme==1.1.4",
"pvlib==0.13.0",
"pandas==2.3.0",
"matplotlib==3.10.7",
]
all = ["solposx[optional,test,doc]"]
[project.urls]
Documentation = "https://solposx.readthedocs.io"
Issues = "https://github.com/pvlib/solposx/issues"
Repository = "https://github.com/pvlib/solposx.git"
Changelog = "https://github.com/pvlib/solposx/blob/main/docs/source/whatsnew.md"
[tool.pytest.ini_options]
addopts = "--cov=solposx --cov-fail-under=100 --cov-report=term-missing"
pythonpath = ["src"]