-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·36 lines (32 loc) · 1.09 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Copyright (C) 2015, 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.
"""
Storage REST API server setup file
"""
from setuptools import setup, find_packages
import storage_api.apis as apis
setup(name='storage-api',
version=apis.__version__,
description='DB Storage REST API',
author='CERN',
author_email='[email protected]',
license='GPLv3',
maintainer='Ignacio Coterillo',
maintainer_email='[email protected]',
url='https://github.com/cerndb/storage-api',
packages=find_packages(),
# scripts=['storage-api.cgi', 'storage-api.wsgi'],
test_suite="",
install_requires=[
'netapp-api',
'ConfigParser',
'flask_restplus',
'flask',
'flask_sso',
])