-
Notifications
You must be signed in to change notification settings - Fork 176
/
setup.py
38 lines (36 loc) · 1.21 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='cors',
version='1.0.1',
description='Fast CORS misconfiguration vulnerabilities scanner',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Jianjun Chen',
author_email= '[email protected]',
url='http://github.com/chenjj/CORScanner',
project_urls={
'Bug Reports': 'https://github.com/chenjj/CORScanner/issues',
'Source': 'https://github.com/chenjj/CORScanner/',
},
license='MIT',
packages=find_packages(),
install_requires=['colorama', 'requests', 'argparse', 'gevent', 'tldextract', 'future', 'PySocks'],
include_package_data=True,
zip_safe=False,
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Environment :: Console',
'Topic :: Security',
],
entry_points={
'console_scripts': [
'cors = CORScanner.cors_scan:main',
],
},
)