-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
38 lines (35 loc) · 1.16 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
[build-system]
requires = ["setuptools>=64", "wheel", "setuptools-git-versioning<2"]
build-backend = "setuptools.build_meta"
[project]
name = "facedancer"
dynamic = ["version"]
requires-python = ">=3.8"
authors = [
{name = "Great Scott Gadgets", email = "[email protected]"},
]
license = { text = "BSD" }
description = "Implement your own USB device in Python, supported by a hardware peripheral such as Cynthion or GreatFET."
urls = { Source = "https://github.com/greatscottgadgets/facedancer" }
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Environment :: Console",
"Environment :: Plugins",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Security",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
dependencies = [
"pyusb", "pyserial", "prompt-toolkit", "libusb1",
]
[tool.setuptools-git-versioning]
enabled = true
[tool.setuptools.package-dir]
facedancer = "facedancer"