-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathsetup.py
executable file
·37 lines (35 loc) · 1.36 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
#!/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.1',
packages=['sgmanager', 'sgmanager.logger', 'sgmanager.securitygroups'],
entry_points = {
'console_scripts': [ 'sgmanager = sgmanager.cli:main' ]
},
license='BSD',
author='Filip Pytloun',
author_email='[email protected]',
maintainer='Filip Pytloun',
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',
],
requires=['boto', 'yaml', 'argparse']
)