forked from keesbos/pyzerto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (32 loc) · 999 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
30
31
32
33
34
35
36
37
38
# -*- coding: utf-8 -*-
'''Setup module'''
import os
from setuptools import setup
try:
import requests # NOQA
except ImportError:
import sys
sys.stderr.write(
"Eighter install requests module with a package manager "
"or with easy_install or pip\n"
"E.g. easy_install requests\n"
)
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='Zerto',
version='0.1dev',
description='Module for calling the Zerto api',
author='Kees Bos',
author_email='[email protected]',
url='https://github.com/keesbos/pyzerto',
long_description=read('README.md'),
classifiers=[
'Development Status :: 3 - Alpha',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: Apache Software License',
],
packages=['zerto'],
# install_requires=['requests'] # if not a recent python version
)
# vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4