forked from NuID/nebulousAD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 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
from setuptools import setup, find_packages
DEPENDENCIES = open('requirements.txt', 'r').read().split('\n')
README = open('README.md', 'r').read()
setup(
name='nebulousAD',
version='1.1.0',
description='Python library and CLI for Checking AD hashes.',
long_description=README,
long_description_content_type='text/markdown',
author='Robert Paul',
author_email='[email protected]',
url="http://github.com/NuID/nebulousAD/tree/master",
packages=find_packages(),
include_package_data=True,
entry_points={'console_scripts': ['nebulousAD=nebulousAD.nebulousAD:main']},
install_requires=DEPENDENCIES,
keywords=['security', 'network', 'hacking'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python 2',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)