-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
50 lines (38 loc) · 1.4 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
48
49
50
# -*- coding: utf-8 -*-
#!/usr/bin/env python
'''
dicoogle-python - dicoogle API client for Python
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
**dicoogle-python** is the official Python client for the dicoogle API.
:copyright: (c) 2013, Luís A. Bastião Silva, Universidade de Aveiro
:license: Creative Commons Attribution-Noncommercial
Resources
^^^^^^^^^
* `Issue Tracker <http://github.com/bioinformatics-ua/dicoogle-python/issues>`_
* `Code <http://github.com/bioinformatics-ua/dicoogle-python>`_
'''
import sys
from distutils.core import setup
if sys.version_info < (2, 7):
raise NotImplementedError('Sorry, you need Python 2.7 or '
'Python 3.x to use `dicoogle-python`.')
setup(name='dicoogle',
version='0.1',
description='dicoogle API client for Python.',
long_description=__doc__,
author='Luis Bastião',
author_email='bastiao@ua.pt',
license='CC-BY-NC',
install_requires=['requests>=1.2.0'],
py_modules=['dicoogle'],
scripts=['dicoogle.py'],
platforms='any',
classifiers=[
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7'],
)