-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (32 loc) · 1.1 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
#!/usr/bin/env python
""" XNAT input/output functionalities for namespace package 'niftypet'.
"""
__author__ = "Pawel J. Markiewicz"
__copyright__ = "Copyright 2019"
# ---------------------------------------------------------------------------------
from setuptools import setup, find_packages
import os
import sys
import platform
#===============================================================
# PYTHON SETUP
#===============================================================
print('i> found those packages:')
print(find_packages(exclude=['docs']))
with open('README.rst') as file:
long_description = file.read()
#----------------------------
setup(
name='nixnat',
license = 'Apache 2.0',
version='0.1.0',
description='XNAT input/output.',
long_description=long_description,
author='Pawel J. Markiewicz',
author_email='p.markiewicz@ucl.ac.uk',
url='https://github.com/NiftyPET/NIXNAT',
keywords='XNAT input output',
install_requires=['pydicom', 'pycurl'],
packages=find_packages(exclude=['docs']),
)
#===============================================================