-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (55 loc) · 1.63 KB
/
setup.py
File metadata and controls
58 lines (55 loc) · 1.63 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
import pathlib
from setuptools import setup, find_packages
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
setup(
name="upnpfuzz",
use_scm_version={
"root": str(HERE),
"write_to": str(HERE / "upnpfuzz" / "_version.py"),
},
description="The Universal Plug and Play (UPnP) Fuzzer",
long_description=README,
long_description_content_type="text/markdown",
author="Threat9",
author_email="marcin@threat9.com",
url="https://www.threat9.com",
download_url="https://github.com/threat9/upnpfuzz/",
packages=find_packages(),
include_package_data=True,
entry_points={
"console_scripts": [
"upnpfuzz=upnpfuzz.main:main",
]
},
install_requires=[
"requests",
],
extras_require={
"dev": [
"isort",
"setuptools_scm",
"twine",
"wheel",
"build",
"ruff",
],
},
classifiers=[
"Operating System :: POSIX",
"Environment :: Console",
"Environment :: Console :: Curses",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"Topic :: Security",
"Topic :: System :: Networking",
"Topic :: Utilities",
],
)