-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
45 lines (38 loc) · 1.46 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
44
45
from setuptools import setup, find_namespace_packages
with open("README.rst", "r") as fh:
long_description = fh.read()
with open("baboossh/version.py", "r") as fv:
version = fv.read().split('"')[1];
setup(
name="baboossh",
version=version,
packages=find_namespace_packages(include=['baboossh*']),
scripts=['bin/baboossh'],
install_requires=['cmd2','tabulate','paramiko','python-libnmap'],
package_data={
# If any package contains *.txt or *.rst files, include them:
'': ['*.txt', '*.rst'],
},
# metadata to display on PyPI
author="Cybiere - Akerva",
author_email="[email protected]",
description="SSH spreader made easy for red teams in a hurry",
long_description=long_description,
long_description_content_type="text/x-rst",
keywords="ssh spread redteam pentest",
url="https://github.com/cybiere/BabooSSH", # project home page, if any
project_urls={
"Bug Tracker": "https://github.com/cybiere/BabooSSH/issues",
"Documentation": "https://baboossh.cybiere.fr/",
"Source Code": "https://github.com/cybiere/BabooSSH",
},
classifiers=[
'Programming Language :: Python :: 3.5',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Environment :: Console',
'Natural Language :: English',
'Operating System :: POSIX',
'Topic :: Security'
]
# could also include long_description, download_url, etc.
)