forked from DefectDojo/defectdojo_api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (38 loc) · 1.34 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
#!/usr/bin/env python
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from defectdojo_api import __version__ as version
with open('README.rst', 'r') as f:
readme = f.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='defectdojo_api',
packages=['defectdojo_api'],
version=version,
description='An API wrapper for DefectDojo.',
long_description=readme,
author='Aaron Weaver',
author_email='[email protected]',
url='https://github.com/aaronweaver/defectdojo_api',
download_url='https://github.com/aaronweaver/defectdojo_api/tarball/' + version,
license='MIT',
install_requires=['requests'],
keywords=['dojo', 'api', 'security', 'software'],
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
]
)