-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
36 lines (32 loc) · 938 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
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import setuptools
from setuptools import setup, find_packages
if setuptools.__version__ < '0.7':
raise RuntimeError("setuptools must be newer than 0.7")
setup(
name="paaws",
version="0.1.0",
author="Pedro H. Spagiari",
author_email="[email protected]",
description="",
url="https://github.com/phspagiari/paaws",
packages=find_packages(exclude=('tests',)),
long_description=open('README.md').read(),
zip_safe=False,
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: Proprietary",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
install_requires=[
"boto>=2.32.0",
"docopt>=0.6.1",
"prettytable==0.7.2",
"Fabric==1.8.2",
],
scripts=["bin/paaws"],
)