-
Notifications
You must be signed in to change notification settings - Fork 69
/
setup.py
39 lines (34 loc) · 1.26 KB
/
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
33
34
35
36
37
38
39
from setuptools import setup
setup(
name="gdeploy",
version="master",
author="Nandaja Varma",
author_email="nandaja.varma@gmail.com",
packages=['gdeploylib', 'gdeploycore', 'gdeployfeatures',
'gdeployfeatures/firewalld', 'gdeployfeatures/quota',
'gdeployfeatures/rh_subscription',
'gdeployfeatures/snapshot', 'gdeployfeatures/yum',
'gdeployfeatures/update_file', 'gdeployfeatures/ctdb',
'gdeployfeatures/geo_replication',
'gdeployfeatures/service', 'gdeployfeatures/shell',
'gdeployfeatures/nfs_ganesha', 'gdeployfeatures/script',
'gdeployfeatures/volume', 'gdeployfeatures/clients',
'gdeployfeatures/peer', 'gdeployfeatures/pv',
'gdeployfeatures/vg', 'gdeployfeatures/lv',
'gdeployfeatures/openshift_ctl', 'gdeployfeatures/vdo'
],
scripts=[
'gdeploy/gdeploy'
],
include_package_data=True,
url="https://github.com/gluster/gdeploy",
license="GPLv3+",
description="Tool to automatically setup and deploy "
"gluster using ansible",
long_description=open("README.md").read(),
install_requires=[
"ansible",
"pyyaml",
"eventlet",
],
)