-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 1.05 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
from setuptools import setup, find_packages
with open('README.md', 'r') as f:
description = f.read()
setup(
name='McQueen',
version='0.5.0',
author='Michael Cao',
author_email='[email protected]',
url="https://github.com/hpcao299/McQueen",
description='A collection of information-gathering tools',
packages=find_packages(),
install_requires=['dnspython', 'requests', 'argparse', 'beautifulsoup4'],
python_requires='>=3.6',
license='MIT',
classifiers=[
'Programming Language :: Python',
'Topic :: Security',
'Environment :: Console',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'Intended Audience :: Telecommunications Industry',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
],
entry_points={
'console_scripts': [
'mcqueen = McQueen:interactive',
],
},
long_description=description,
long_description_content_type='text/markdown'
)