-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
51 lines (44 loc) · 1.23 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
48
49
50
51
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
namespaces = true
where = ["src"]
[tool.setuptools.package-data]
"pyduin.data.boardfiles" = ["*.yml"]
"pyduin.data.platformio" = ["platformio.ini", "pyduin.ino"]
[tool.distutils.bdist_wheel]
universal = true
[project]
name = "pyduin"
version = "0.6.4"
description = "Extensive Arduino abstraction"
readme = "README.md"
authors = [
{name = "Steffen Kockel", email = "info@steffen-kockel.de"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">3"
dependencies = [
"cpplint",
"jinja2",
"platformio",
"PyYAML",
"pyserial",
"requests",
"termcolor"
]
license = {text = "GPLv3"}
[project.urls]
Homepage = "http://github.com/SteffenKockel/pyduin"
Documentation = "http://github.com/SteffenKockel/pyduin"
Source = "http://github.com/SteffenKockel/pyduin"
Tracker = "http://github.com/SteffenKockel/pyduin/issues"
[project.scripts]
pyduin = "pyduin.arduino_cli:main"
# Firmware, Pinfiles, platformio.ini