-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 947 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# vim: tabstop=4 shiftwidth=4 softtabstop=4
from setuptools import find_packages
from setuptools import setup
setup(
name='microhackaton-python-deploy-service',
version='0.0.1',
description='A python service to deploy pthon microservices for http://microhackaton.github.io/2014/',
author="Kamil Chmielewski",
author_email='[email protected]',
url='https://github.com/microhackaton/python-deploy-service',
license="ASL 2.0",
install_requires=[
'flask',
'ansible',
],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2.7",
],
keywords="deploy service ansible",
packages=find_packages(),
long_description=open("README.rst", "r").read(),
)