-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
52 lines (46 loc) · 1.67 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "sp2ts"
version = "1.0.0"
dynamic = ["dependencies"]
requires-python = ">=3.9"
authors = [
{name="Jamie Taylor", email="[email protected]"},
]
maintainers = [
{name="Jamie Taylor", email="[email protected]"},
]
description = "Convert between the settlement periods used by GB electricity industry and Unix timestamps."
readme = "README.md"
#license = {file = "LICENSE.txt"}
keywords = ["timestamp", "timezone", "settlement period", "settlement date", "settlement time", "electricity market"]
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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
#[project.optional-dependencies]
[project.urls]
Homepage = "https://github.com/SheffieldSolar/sp2ts"
Documentation = "https://sheffieldsolar.github.io/PV_Live-API/build/html/index.html"
Repository = "https://github.com/SheffieldSolar/sp2ts"
"Bug Tracker" = "https://github.com/SheffieldSolar/sp2ts/issues"
[project.scripts]
sp2ts = "sp2ts.sp2ts:main"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
optional-dependencies = {dev = {file = ["requirements_dev.txt"]}}
[tool.setuptools.packages.find]
#include = []
exclude = ["Tests*"]