-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (46 loc) · 1.25 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
[build-system]
requires = [
"setuptools >= 65",
"wheel >= 0.38",]
build-backend = "setuptools.build_meta"
[project]
name = "py_aduc_upload"
version = "0.0.1"
authors = [
{ name="TheHeadlessSourceMan", email="theheadlesssourceman@gmail.com" },
]
description = "Python interface to the serial uploader for Analog Devices ADuC70xx family of devices."
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pyserial",
"intelhex",
]
scripts = {
aduc_upload = "py_aduc_upload.aduc_upload:cmdline",
py_aduc_upload = "py_aduc_upload.aduc_upload:cmdline",
octopus = "py_aduc_upload.octopus_ui:cmdline",
octopus_ui = "py_aduc_upload.octopus_ui:cmdline",
}
[project.optional-dependencies]
test = [
"pytest >= 5.0.0",
]
doc = [
"sphinx",
]
[project.urls]
Homepage = "https://github.com/TheHeadlessSourceMan/py_aduc_upload"
Issues = "https://github.com/TheHeadlessSourceMan/py_aduc_upload/issues"
[tool.setuptools.packages.find]
where = ["."]
include = [ "py_aduc_upload"]
exclude = ["py_aduc_upload.tests*"]
[tool.setuptools.package-data]
"*" = ["*.ico"]