forked from caktus/fabulaws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (22 loc) · 820 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
from setuptools import setup, find_packages
setup(
name='fabulaws',
version=__import__('fabulaws').__version__,
author='Caktus Consulting Group',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
url='http://github.com/caktus/fabulaws/',
license='BSD',
description='Simple tool for interacting with AWS in Python',
classifiers=[
'Topic :: System :: Systems Administration',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
],
long_description=open('README.rst').read(),
)