-
Notifications
You must be signed in to change notification settings - Fork 223
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
58 lines (51 loc) · 1.32 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
46
47
48
49
50
51
52
53
54
55
56
57
58
[build-system]
requires = ["setuptools>=77", "wheel", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "canopen"
authors = [
{name = "Christian Sandberg", email = "christiansandberg@me.com"},
{name = "André Colomb", email = "src@andre.colomb.de"},
{name = "André Filipe Silva", email = "afsilva.work@gmail.com"},
]
description = "CANopen stack implementation"
readme = "README.rst"
requires-python = ">=3.9"
license = "MIT"
license-files = ["LICENSE.txt"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering",
]
dependencies = [
"python-can >= 3.0.0",
]
dynamic = ["version"]
[project.optional-dependencies]
db_export = [
"canmatrix ~= 1.0",
]
[project.urls]
documentation = "https://canopen.readthedocs.io/en/stable/"
repository = "https://github.com/canopen-python/canopen"
[tool.setuptools.packages.find]
include = ["canopen", "canopen.*"]
[tool.setuptools_scm]
version_file = "canopen/_version.py"
[tool.pytest.ini_options]
testpaths = [
"test",
]
filterwarnings = [
"ignore::DeprecationWarning",
]
[tool.mypy]
python_version = "3.9"
exclude = [
"^examples*",
"^test*",
"^setup.py*",
]