forked from rubrikinc/rubrik-sdk-for-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 1001 Bytes
/
setup.py
File metadata and controls
34 lines (31 loc) · 1001 Bytes
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
#! /usr/bin/env python
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="rubrik_cdm",
version="1.0.12",
author="Rubrik Ranger Team",
description="A Python package for interacting with the Rubrik CDM API.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/rubrik-devops/rubrik-sdk-for-python",
packages=setuptools.find_packages(exclude=['tests']),
classifiers=[
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6"
],
install_requires=[
'requests >= 2.18.4',
'python-dateutil',
'pytz'
],
tests_require=[
'pytest'
],
zip_safe=True,
)