-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·26 lines (24 loc) · 884 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
24
25
26
from setuptools import setup, find_packages
setup(
name = "awsom",
description = ("Browse your AWS resources using a hierarchical object model"),
author = "David Losada Carballo",
author_email = "david@tuxpiper.com",
version = "0.0.3",
packages = find_packages(),
license = 'MIT',
keywords = "aws internet cloud",
long_description = open('README.md').read(),
url = "http://github.com/tuxpiper/awsom",
zip_safe = True,
classifiers=[
"Development Status :: 1 - Planning",
"Topic :: System",
"Environment :: Console",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python"
],
# We use boto for interacting with AWS services, YAML for storing configuration
install_requires = ['boto>=2.7.0', 'PyYAML==3.10']
)