-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (27 loc) · 836 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
from setuptools import setup, find_packages
setup(name='frieze',
version='0.1',
description='Programmable frontend for Ansible',
classifiers=[
'Development Status :: 1 - Planning',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.6',
'Topic :: System :: Clustering',
],
keywords='ansible clusters configuration',
url='http://github.com/kchoudhu/frieze',
author='Kamil Choudhury',
author_email='[email protected]',
license='BSD',
packages=find_packages(),
package_data={'frieze' : ['capability/resources/*/*']},
install_requires=[
'bless',
'boto3',
'certbot',
'cryptography',
'mako',
'openarc',
'vultr'
],
zip_safe=False)