-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
30 lines (27 loc) · 946 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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "splitmount",
version = "0.1.3",
author = "Joe Julian",
author_email = "[email protected]",
description = ( "Admin tool to aid in the recovery of split-brain file entries in GlusterFS" ),
license = "GPLv3",
keywords = "gluster glusterfs split brain split-brain heal",
url = "https://github.com/joejulian/glusterfs-splitbrain",
long_description = read('README.md'),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Topic :: Utilities",
],
entry_points = {
'console_scripts': [
'splitmount = splitmount.splitmount:main'
],
},
packages = find_packages(),
)