-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathsetup.py
42 lines (36 loc) · 1.59 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 pathlib import Path
from setuptools import setup
import io
from os import path
this_directory = path.abspath(path.dirname(__file__))
with io.open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
desc = f.read()
version = Path("Jira-Lens/_version.py").read_text(encoding="utf-8")
about = {}
exec(version, about)
setup(name='Jira-Lens',
#version=__import__('Jira-Lens').__version__,
version=about["__version__"],
description='Jira-Lens : JIRA Security Auditing Tool',
author='Mayank Pandey',
author_email='[email protected]',
long_description = desc,
long_description_content_type = 'text/markdown',
url='https://github.com/MayankPandey01/Jira-Lens/',
download_url = 'https://github.com/MayankPandey01/Jira-Lens/releases',
install_requires=["progressbar","requests","argparse","colorama"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
keywords=['Jira-Lens','JIRA','Auditing', 'bug bounty', 'http', 'pentesting', 'security'],
)