forked from tenable/integration-jira-cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (41 loc) · 1.28 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
from setuptools import setup, find_packages
import os
long_description = '''
Tenable -> Jira Cloud Bridge
For usage documentation, please refer to the github repository at
https://github.com/tenable/integrations-jira-cloud
'''
setup(
name='tenable-jira-cloud',
version='1.2.3',
description='Tenable -> Jira Cloud Bridge',
author='Tenable, Inc.',
long_description=long_description,
author_email='smcgrath@tenable.com',
url='https://github.com/tenable/integrations-jira-cloud',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Information Technology',
'Topic :: System :: Networking',
'Topic :: Other/Nonlisted Topic',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
keywords='tenable tenable_io tenable_sc securitycenter jira',
packages=find_packages(exclude=['tests']),
install_requires=[
'pytenable>=1.4.2',
'restfly>=1.1.0',
'arrow>=1.0.2',
'Click>=7.0',
'pyyaml>=5.1.2'
],
entry_points={
'console_scripts': [
'tenable-jira=tenable_jira.cli:cli',
],
},
)