forked from dangzhiqiang/glusterfs-rest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (31 loc) · 981 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
31
32
33
34
35
# -*- coding: utf-8 -*-
"""
setup.py
:copyright: (c) 2014 by Aravinda VK
:license: MIT, see LICENSE for more details.
"""
from setuptools import setup
setup(
name="GlusterFS REST API Server",
version="0.2",
packages=["glusterfsrest", "glusterfsrest.cli"],
include_package_data=True,
install_requires=['argparse', 'flask', 'gunicorn', 'pyyaml'],
entry_points={
"console_scripts": [
"glusterrest = glusterfsrest.glusterrest:main",
]
},
package_data={'glusterfsrest': ['doc/*.yml', 'templates/*', 'static/*']},
data_files=[('/usr/bin', ['bin/glusterrestd']),
('/var/lib/glusterd/rest/',
['data/port'])],
platforms="linux",
zip_safe=False,
author="Aravinda VK",
author_email="mail@aravindavk.in",
description="GlusterFS REST API server",
license="BSD",
keywords="glusterfs, cli, rest",
url="https://github.com/aravindavk/glusterfs-rest",
)