forked from cloud-compose/cloud-compose
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 717 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 717 Bytes
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
import os
from setuptools import setup, find_packages
import warnings
setup(
name='cloud-compose',
version='0.4.0',
packages=find_packages(),
include_package_data=True,
install_requires=[
'click>=6.6',
],
entry_points={
"console_scripts": [
"cloud-compose=cloudcompose.cli:cli",
]
},
namespace_packages = ['cloudcompose'],
author="Patrick Cullen and the WaPo platform tools team",
author_email="opensource@washingtonpost.com",
url="https://github.com/cloud-compose/cloud-compose",
download_url = "https://github.com/cloud-compose/cloud-compose/tarball/v0.4.0",
keywords = ['cloud', 'compose', 'aws'],
classifiers = []
)