forked from msurovcak/sgmanager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·39 lines (37 loc) · 1.38 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (C) 2007-2013, GoodData(R) Corporation. All rights reserved
from setuptools import setup
setup(
name='sgmanager',
version='1.4.5',
packages=['sgmanager', 'sgmanager.logger', 'sgmanager.securitygroups'],
entry_points={
'console_scripts': ['sgmanager = sgmanager.cli:main']
},
license='BSD',
author='GoodData Corporation',
author_email='[email protected]',
maintainer='Petr Benas',
maintainer_email='[email protected]',
description='Security Groups Management Tool',
long_description=(
'Tooling for management of security groups. Load local configuration,'
'load remote groups and apply differences.'),
url='https://github.com/gooddata/sgmanager',
download_url='https://github.com/gooddata/sgmanager',
platform='POSIX',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: POSIX',
'Topic :: System :: Networking :: Firewalls',
'Programming Language :: Python',
'Programming Language :: Python :: Implementation :: CPython',
],
install_requires=['boto', 'PyYAML'],
)