-
-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathsetup.py
executable file
·57 lines (52 loc) · 1.65 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
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python
"""
Standard build script.
"""
__docformat__ = 'restructuredtext'
try:
from setuptools import setup, find_packages
except ImportError:
print('You must have setuptools installed to use setup.py. Exiting...')
raise SystemExit(1)
install_dependencies = (
'requests',
'six'
)
test_requirements = (
'mock',
'pylama',
'pytest',
'requests_mock'
)
setup(
name="python-owasp-zap-v2.4",
version="0.0.13",
description="OWASP ZAP 2.6 API client",
long_description="OWASP Zed Attack Proxy 2.6 API python client (the 2.4 package name has been kept to make it easier to upgrade)",
author="ZAP development team",
author_email='',
url="https://www.owasp.org/index.php/OWASP_Zed_Attack_Proxy_Project",
download_url="https://github.com/zaproxy/zap-api-python/releases/tag/0.0.13",
platforms=['any'],
license="ASL2.0",
package_dir={
'': 'src',
},
packages=find_packages('src'),
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Development Status :: 5 - Production/Stable',
'Topic :: Security',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
install_requires=install_dependencies,
tests_require=test_requirements,
extras_require={'tests': test_requirements}
)