-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (42 loc) · 1.52 KB
/
setup.py
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
from setuptools import setup, find_packages
setup(
name="LocalResolver",
version="1.0.1",
py_modules=["LocalResolver"],
install_requires=["scapy", "PythonToolsKit"],
author="Maurice Lambert",
author_email="[email protected]",
maintainer="Maurice Lambert",
maintainer_email="[email protected]",
description="This package implements local hostname resolver tool with scapy.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/mauricelambert/LocalResolver",
project_urls={
"Executable": "https://mauricelambert.github.io/info/python/code/LocalResolver.pyz",
"Documentation": "https://mauricelambert.github.io/info/python/code/LocalResolver.html",
},
classifiers=[
"Environment :: Console",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
entry_points={
"console_scripts": ["LocalResolver = LocalResolver:main"],
},
python_requires=">=3.8",
keywords=[
"Resolve",
"Hostname",
"LLMNR",
"Netbios",
],
platforms=["Windows", "Linux", "MacOS"],
license="GPL-3.0 License",
)