-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathsetup.py
37 lines (29 loc) · 987 Bytes
/
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
# coding: utf-8
import codecs
from setuptools import setup, find_packages
with open('requirements.txt') as f:
requirements = [l for l in f.read().splitlines() if l]
def long_description():
with codecs.open('README.md', 'r') as readme:
return readme.read()
setup(
name='pySharpSphere',
version='0.0.1',
packages=find_packages(),
author='Ricter Zheng',
author_email='[email protected]',
keywords=['vCenter Server', 'exploit', 'SharpSphere', 'pySharpSphere'],
description='vCenter Server attack toolkit',
long_description=long_description(),
url='https://github.com/RicterZ/PySharpSphere',
download_url='https://github.com/RicterZ/PySharpSphere/tarball/main',
include_package_data=True,
zip_safe=False,
install_requires=requirements,
entry_points={
'console_scripts': [
'pysharpsphere = pysharpsphere.main:main',
]
},
license='MIT',
)