-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathsetup.py
54 lines (49 loc) · 1.76 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
45
46
47
48
49
50
51
52
53
54
from setuptools import setup, find_packages
def read_file(filename):
try:
with open(filename) as readme_file:
return readme_file.read()
except:
return ''
requirements = read_file('requirements.txt')
readme = read_file('README.rst')
changelog = read_file('CHANGELOG.rst')
setup(
name='trailscraper',
version='0.8.2',
description='A command-line tool to get valuable information out of AWS CloudTrail',
long_description=readme + '\n\n' + changelog,
url='http://github.com/flosell/trailscraper',
author='Florian Sellmayr',
author_email='[email protected]',
license='Apache License 2.0',
packages=find_packages(include=['trailscraper','trailscraper.*']),
package_data={
"": ["known-iam-actions.txt"],
},
zip_safe=False,
entry_points={
'console_scripts': ['trailscraper=trailscraper.cli:root_group'],
},
install_requires=requirements,
test_suite='tests',
keywords="aws cloud iam cloudtrail trailscraper",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development :: Code Generators',
'Topic :: Utilities',
'Topic :: System :: Systems Administration',
'Topic :: Security',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
],
python_requires='>=3.9',
)