-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathsetup.py
47 lines (36 loc) · 1.35 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
#!/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()
setup(
name='cvpysdk',
version=get_version(),
description='Python SDK for Commvault',
long_description=readme(),
author='Commvault Systems Inc.',
url='https://github.com/CommvaultEngg/cvpysdk',
author_email='[email protected]',
scripts=[],
packages=find_packages(),
keywords='commvault , cv , simpana , commcell',
include_package_data=True,
install_requires='requests',
zip_safe=False
)