-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
36 lines (32 loc) · 1.01 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 python
# -*- 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.
"""
DB On Demand REST API server setup file
"""
from setuptools import setup, find_packages
setup(name='dbod-api',
version='0.8.0',
description='DB On Demand REST API',
author='CERN',
author_email='[email protected]',
license='GPLv3',
maintainer='Ignacio Coterillo',
maintainer_email='[email protected]',
url='https://github.com/cerndb/dbod-api',
packages=find_packages(),
scripts=['bin/dbod-api'],
test_suite="",
install_requires=[
'ConfigParser',
'tornado',
'nose',
'mock',
'requests',
],
)