-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
40 lines (37 loc) · 1.09 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
"""
SMUDGE setup.py
"""
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='smudge',
version='1.0.3',
description='Passive OS detection with dynamic signatures.',
long_description=long_description,
long_description_content_type='text/markdown',
packages=["smudge"],
py_modules=["smudge"],
package_dir={'smudge': 'smudge'},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: System :: Networking :: Monitoring",
"Natural Language :: English",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"
],
install_requires=[
"scapy >= 2.4.0",
"colorama ~= 0.4.3",
"netifaces ~= 0.10.4"
],
extras_require = {
"dev": [
"pylint>=2.15.0",
],
},
url="https://github.com/activecm/smudge",
author="Dave Quartarolo",
author_email="[email protected]",
)