-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
47 lines (43 loc) · 1.21 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
[build-system]
requires = [
"setuptools>=42",
"wheel",
"setuptools_scm[toml]>=6.0",
]
build-backend = "setuptools.build_meta"
[project]
requires-python = ">=3.9"
name = "bydhvs"
dynamic = [
"version",
]
description = "A module for communicating with the BYD HVS Battery system"
readme = { file = "README.md", content-type = "text/markdown" }
license = { text = "GPL-3.0" }
dependencies = [
"crcmod>=1.7",
]
authors = [
{name = "bbr111", email = "[email protected]"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Utilities"
]
[tool.setuptools_scm]
[project.urls]
HomePage = "https://github.com/bbr111/python-bydhvs"
DOWNLOAD = "https://github.com/bbr111/python-bydhvs/releases"
[tool.setuptools.packages.find]
where = ["."]