-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 1.56 KB
/
pyproject.toml
File metadata and controls
51 lines (45 loc) · 1.56 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pvlive_api"
version = "1.5.2"
dynamic = ["dependencies"]
requires-python = ">=3.11"
authors = [
{name="Jamie Taylor", email="jamie.taylor@sheffield.ac.uk"},
]
maintainers = [
{name="Jamie Taylor", email="jamie.taylor@sheffield.ac.uk"},
]
description = "A Python interface for the PV_Live web API from Sheffield Solar."
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["solar", "pv", "pv_live", "api"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Topic :: Database :: Database Engines/Servers",
"Topic :: Utilities",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
#[project.optional-dependencies]
[project.urls]
Homepage = "https://www.solar.sheffield.ac.uk/pvlive/"
Documentation = "https://sheffieldsolar.github.io/PV_Live-API/build/html/index.html"
Repository = "https://github.com/SheffieldSolar/PV_Live-API"
"Bug Tracker" = "https://github.com/SheffieldSolar/PV_Live-API/issues"
[project.scripts]
pv_live = "pvlive_api.pvlive:main"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
optional-dependencies = {dev = {file = ["requirements_dev.txt"]}}
[tool.setuptools.packages.find]
#include = []
exclude = ["Tests*", "misc*"]