forked from gluster/gluster-plus-one-scale
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (36 loc) · 1.19 KB
/
setup.py
File metadata and controls
39 lines (36 loc) · 1.19 KB
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
#
# Copyright (c) 2018 Red Hat, Inc.
#
# This file is part of gluster-plus-one-scale 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-plus-one-scale",
version="0.1",
packages=["scale"],
include_package_data=True,
platforms="linux",
zip_safe=False,
author="Gluster Developers",
author_email="[email protected]",
description="Gluster Plus One scale API's and Script",
license="GPLv2",
keywords="gluster, tool, health",
url="https://github.com/gluster/gluster-plus-one-scale",
long_description="""
Gluster Plus One Scale
""",
classifiers=[
"Development Status :: Beta",
"Topic :: Utilities",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
],
)