-
Notifications
You must be signed in to change notification settings - Fork 52
/
setup.py
52 lines (44 loc) · 1.61 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
51
52
"""
RadIO is a framework for batch-processing of computational tomography (CT)-scans
for deep learning experiments.
Documentation - https://analysiscenter.github.io/radio/
"""
import re
from setuptools import setup, find_packages
with open('radio/__init__.py', 'r') as f:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', f.read(), re.MULTILINE).group(1)
with open('docs/index.rst', 'r') as f:
long_description = f.read()
with open('./requirements.txt') as f:
requirements = [line.strip() for line in f.readlines()]
setup(
name='radio',
packages=find_packages(exclude=['examples']),
version=version,
url='https://github.com/analysiscenter/radio',
license='Apache License 2.0',
author='Data Analysis Center team',
author_email='[email protected]',
description='A framework for deep research of CT scans',
long_description=long_description,
zip_safe=False,
platforms='any',
install_requires=requirements,
extras_require={
'tensorflow': ['tensorflow>=1.4'],
'tensorflow-gpu': ['tensorflow-gpu>=1.4'],
'keras': ['keras>=2.0.0'],
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering'
],
)