-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (33 loc) · 1.03 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
[build-system]
requires = ["setuptools","qdox @ git+https://github.com/eudoxys/qdox","pylint"]
build-backend = "setuptools.build_meta"
install = "qdox -"
[project]
name = "retail"
version = "0.0.0a0"
description = "Retail electricity data"
authors = [
{name = "David P. Chassin <[email protected]>"},
]
maintainers = [
{name = "David P. Chassin <[email protected]>"},
]
readme = "README.md"
requires-python = ">= 3.10"
dependencies = ["pandas","openpyxl"]
keywords = ["retail","electricity","data"]
license = {text="MIT License"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries",
]
[project.urls]
Homepage = "https://github.com/eudoxys/retail"
Documentation = "https://retail.gitub.io/"
Repository = "https://github.com/eudoxys/retail.git"
Issues = "https://github.com/eudoxys/retail/issues"
[project.scripts]
retail = "retail:main"