forked from checkmarx-ts/CxMaintain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (38 loc) · 1.12 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
from setuptools import setup
_version = '0.1.0rc1'
install_requires=[
'PyInquirer',
'requests',
'docopt',
'pyyaml',
'pyjwt',
'python-dateutil'
]
tests_require=[
'pytest',
'mock'
]
setup(
name='cxmaintain',
version=_version,
description='Checkmarx CxSAST 9.0 Retention Helper',
url='https://github.com/checkmarx-ts/CxMaintain',
author='Checkmarx TS-APAC',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: System Administrators',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GPL-3.0-only',
'Programming Language :: Python :: 3.8',
],
keywords='Checkmarx Maintenance helper',
packages=['cxmaintain', 'cxmaintain.auth', 'cxmaintain.utils', 'cxmaintain.retention'],
python_requires='>=3.7',
install_requires=install_requires,
extras_require={
'tests': install_requires + tests_require,
},
package_data={'cxmaintain': ['templates/*']},
entry_points={'console_scripts': ['cxmaintain=cxmaintain.cxmaintain:main']}
)