forked from Commvault/cvpysdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (41 loc) · 1.6 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
49
50
51
52
53
54
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# --------------------------------------------------------------------------
# Copyright ©2016 Commvault Systems, Inc.
# See LICENSE.txt in the project root for
# license information.
# --------------------------------------------------------------------------
"""Setup file for the CVPySDK Python package."""
import os
import re
from setuptools import setup, find_packages
ROOT = os.path.dirname(__file__)
VERSION = re.compile(r'''__version__ = ['"]([0-9.]+)['"]''')
def get_version():
"""Gets the version of the CVPySDK python package from __init__.py file."""
init = open(os.path.join(ROOT, 'cvpysdk', '__init__.py')).read()
return VERSION.search(init).group(1)
def readme():
"""Reads the README.rst file and returns its contents."""
with open('README.rst') as file_object:
return file_object.read()
def get_license():
"""Reads the LICENSE.txt file and returns its contents."""
with open('LICENSE.txt') as file_object:
return file_object.read()
setup(
name='cvpysdk',
version=get_version(),
author='Commvault Systems Inc.',
author_email='[email protected]',
description='Commvault SDK for Python',
license=get_license(),
long_description=readme(),
url='https://github.com/CommvaultEngg/cvpysdk',
scripts=[],
packages=find_packages(),
keywords='commvault, python, sdk, cv, simpana, commcell, cvlt, webconsole',
include_package_data=True,
install_requires=['requests', 'future', 'xmltodict'],
zip_safe=False
)