-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 1.15 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
42
43
44
45
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm>=7.1"]
build-backend = "setuptools.build_meta"
[project]
name = "python-can-remote"
description = "CAN over network bridge for Python"
readme = { file = "README.rst", content-type = "text/x-rst" }
authors = [
{ name = "Christian Sandberg", email = "christiansandberg@me.com" }
]
license = { text = "MIT" }
keywords = ["CAN", "TCP", "websocket"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering"
]
urls = { Homepage = "https://github.com/christiansandberg/python-can-remote" }
dependencies = [
"python-can>=3.0.0"
]
dynamic = ["version"]
[tool.setuptools]
include-package-data = true
[tool.setuptools_scm]
[tool.setuptools.packages.find]
where = ["."]
include = ["can_remote*"]
[tool.setuptools.package-data]
"can_remote" = [
"web/index.html",
"web/assets/*"
]
[project.entry-points."can.interface"]
remote = "can_remote.client:RemoteBus"