-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
executable file
·46 lines (36 loc) · 1.25 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
"""Setup script."""
import setuptools
import CureIAM
_description = CureIAM.__doc__.splitlines()[0]
_long_description = open('README.md').read()
_version = CureIAM.__version__
_requires = open('pkg-requirements.txt').read().splitlines()
setuptools.setup(
name='CureIAM',
version=_version,
author='CureIAM Authors and Contributors',
description=_description,
long_description=_long_description,
url='https://github.com/CureIAM/CureIAM',
install_requires=_requires,
packages=setuptools.find_packages(exclude=['CureIAM.test']),
entry_points={
'console_scripts': {
'CureIAM = CureIAM.manager:main'
}
},
# Reference for classifiers: https://pypi.org/classifiers/
classifiers=[
'Development Status :: 1 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: DevOps',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: System :: Monitoring',
],
keywords='GCP IAM monitoring framework',
)