-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
32 lines (28 loc) · 940 Bytes
/
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
from setuptools import setup, find_packages
from codecs import open
from os import path
import domainadapt
here = path.abspath(path.dirname(__file__))
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name='domainadapt',
version=domainadapt.__version__,
description='Segmentation domain adaptation for MRI',
url='https://github.com/neuropoly/domainadaptation',
author='Neuropoly and GPIN',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
],
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=requirements,
entry_points={
'console_scripts': [
'domainadapt=domainadapt.main:run_main',
'gm_resample_training=domainadapt.preprocess:resample_training'
],
},
)