-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (27 loc) · 800 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
import os
from setuptools import setup, find_packages
from cirrus import __version__
dependencies = ["apache-libcloud", "PyYAML"]
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="cirrus",
version=__version__,
author="Felipe Reyes",
author_email="freyes@tty.cl",
description=("Viewer for clouds with EC2 compatible API"),
license="GPLv3",
keywords="ec2 cloud aws openstack",
packages=find_packages(),
include_package_data=True,
long_description=read('README'),
install_requires=dependencies,
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
],
entry_points={
'console_scripts': [
'cirrus = cirrus.app:main',
]},
)