-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
47 lines (40 loc) · 1.57 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
# Copyright (C) 2016, CERN
# This software is distributed under the terms of the GNU General Public
# Licence version 3 (GPL Version 3), copied verbatim in the file "LICENSE".
# In applying this license, CERN does not waive the privileges and immunities
# granted to it by virtue of its status as Intergovernmental Organization
# or submit itself to any jurisdiction.
import os
from setuptools import setup
import netapp
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='netapp-api',
version=netapp.__version__,
author='CERN',
author_email='[email protected]',
maintainer='Borja Aparicio Cotarelo',
maintainer_email='[email protected]',
description='NetApp OCUM API wrapper',
url='https://github.com/cerndb/netapp-api-python',
license='GPLv3',
packages=['netapp'],
install_requires=['pytz', 'requests', 'lxml', 'six'],
long_description=read('README.md'),
long_description_content_type='text/markdown',
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
# Indicate who your project is intended for
'Intended Audience :: Developers',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
scripts=['bin/ontap_tool'],
)