forked from ClusterLabs/crmsh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (23 loc) · 947 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
#!/usr/bin/env python3
# Note that this script only installs the python modules,
# the other parts of crmsh are installed by autotools
from setuptools import setup
import contextlib
import re
VERSION = '0.0.1'
with contextlib.suppress(Exception):
with open('version', 'r', encoding='ascii') as f:
match = re.match('^\\d+\\.\\d+\\.\\d+', f.read().strip())
if match:
VERSION = match.group(0)
setup(name='crmsh',
version=VERSION,
description='Command-line interface for High-Availability cluster management',
author='Kristoffer Gronlund, Xin Liang',
author_email='[email protected]',
url='http://crmsh.github.io/',
packages=['crmsh', 'crmsh.crash_test', 'crmsh.report', 'crmsh.prun'],
install_requires=['lxml', 'PyYAML', 'python-dateutil', 'packaging'],
scripts=['bin/crm'],
data_files=[('/usr/share/crmsh', ['doc/crm.8.adoc'])],
include_package_data=True)