-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
50 lines (42 loc) · 1.24 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
[build-system]
requires = ["setuptools>=64", "setuptools-git-versioning<2"]
build-backend = "setuptools.build_meta"
[project]
name = "pyfwup"
description = "Python library for programming various USB bootloaders."
authors = [
{name = "Great Scott Gadgets", email = "[email protected]"},
]
requires-python = ">=3.8"
readme = "README.md"
license = {text = "BSD"}
classifiers = [
"Development Status :: 1 - Planning",
"Environment :: Console",
"Environment :: Plugins",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Security",
]
dependencies = [
"importlib_resources; python_version<'3.9'",
"pyusb",
"tqdm"
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/greatscottgadgets/pyfwup"
Issues = "https://github.com/greatscottgadgets/pyfwup/issues"
[project.scripts]
fwup-util = "fwup_utils.fwup_util:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["fwup", "fwup_utils"]
[tool.setuptools-git-versioning]
enabled = true
starting_version = "0.4.0"