-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (31 loc) · 1021 Bytes
/
Copy pathpyproject.toml
File metadata and controls
38 lines (31 loc) · 1021 Bytes
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
[project]
name = "andersen_ev"
license = {text = "MIT"}
description = "Python package for controlling the Andersen A2 EV charger"
dynamic=["version", "dependencies"]
readme="README.md"
authors = [ { name="James Brown" }]
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "andersen_ev.__version__"}
dependencies = {file = ["src/andersen_ev/requirements.txt"]}
[tool.setuptools]
include-package-data = true
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"andersen_ev.schema" = ["**/*.graphql"]
[tool.setuptools.exclude-package-data]
"andersen_ev.schema" = ["test*"]
[project.urls]
"Homepage" = "https://github.com/strobejb/andersen-ev"
"Bug Tracker" = "https://github.com/strobejb/andersen-ev/issues"