-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
26 lines (25 loc) · 842 Bytes
/
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
from aws_nuke_exporter import __version__
from setuptools import setup, find_packages
setup(
name='aws-nuke-exporter',
version=__version__,
author='oijkn',
author_email='[email protected]',
packages=find_packages(),
entry_points={
'console_scripts': [
'aws-nuke-exporter=aws_nuke_exporter.exporter:main',
],
},
url='https://github.com/oijkn/aws-nuke-exporter',
license='GPL',
description='A tool for exporting aws-nuke logs in JSON or CSV formats.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
)