-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (45 loc) · 1.48 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
40
41
42
43
44
45
46
47
48
#
# Copyright (c) 2017 Red Hat, Inc.
#
# This file is part of libgfapi-python project which is a
# subproject of GlusterFS ( www.gluster.org)
#
# This file is licensed to you under your choice of the GNU Lesser
# General Public License, version 3 or any later version (LGPLv3 or
# later), or the GNU General Public License, version 2 (GPLv2), in all
# cases as published by the Free Software Foundation.
from setuptools import setup
setup(
name="gluster-health-report",
version="0.1",
packages=["glusterhealth", "glusterhealth.reports"],
include_package_data=True,
install_requires=[],
entry_points={
"console_scripts": [
"gluster-health-report = glusterhealth.main:main"
]
},
platforms="linux",
zip_safe=False,
author="Gluster Developers",
author_email="[email protected]",
description="Gluster Health Report tools",
license="GPLv2",
keywords="gluster, tool, health",
url="https://github.com/aravindavk/gluster-health-report",
long_description="""
Gluster Health Report
""",
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"Environment :: Console",
"License :: OSI Approved :: GPLv2 License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 2 :: Only"
],
)