-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 1.11 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
[build-system]
requires = ["setuptools >= 67.7", "setuptools_scm>=8", "python-can>=4.5.0"]
build-backend = "setuptools.build_meta"
[project]
name = "python-can-coe"
description = "An interface introducing CAN over Ethernet into python-can"
dynamic = ["version"]
dependencies = [
"python-can>=4.5.0",
]
requires-python = ">=3.8"
authors = [
{name = "Gerrit Beine", email = "mail@gerritbeine.com"},
]
maintainers = [
{name = "Gerrit Beine", email = "mail@gerritbeine.com"},
]
readme = "README.md"
license = {file = "LICENSE.md"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.8",
"Topic :: Home Automation",
"Topic :: Software Development :: Embedded Systems :: Controller Area Network (CAN)"
]
[project.urls]
Homepage = "https://c0d3.sh/smarthome/python-can-coe"
Issues = "https://github.com/gbeine/python-can-coe/issues"
[project.entry-points."can.interface"]
coe = "coe.coe:CoE"
[tool.setuptools.packages.find]
include = ["coe*"]
[tool.setuptools.dynamic]
version = {attr = "coe.__version__"}