-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 754 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 754 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='container-cloud-config',
version='0.0.3',
author="Jake Moshenko",
author_email="jake.moshenko+pip@coreos.com",
description="Module for helping to create cloud config for running containers",
long_description=open('README.md').read(),
packages=find_packages(),
package_data={'': ['templates/*.yaml']},
include_package_data=True,
install_requires=['requests', 'jinja2'],
url='http://github.com/devtable/container-cloud-config',
classifiers=[
"Programming Language :: Python",
"Operating System :: OS Independent",
"Intended Audience :: Developers"
],
license="Apache",
)