-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
25 lines (23 loc) · 890 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
from os import path
from setuptools import setup
with open(path.join(path.dirname(path.abspath(__file__)), 'README.md')) as f:
readme = f.read()
setup(
name = 'fetal_brain_assessment',
description = 'Automatic fetal brain MRI volume cropping and quality assessment tool',
version = '1.3.1',
long_description = readme,
author = 'Iván Legorreta',
author_email = 'ilegorreta@outlook.com',
url = 'https://github.com/FNNDSC/pl-fetal-brain-assessment',
packages = ['fetal_brain_assessment'],
install_requires = ['chrisapp>=2.2.0', 'colorlog'],
license = 'MIT',
zip_safe = False,
python_requires = '>=3.8',
entry_points = {
'console_scripts': [
'fetal_brain_assessment = fetal_brain_assessment.__main__:main'
]
}
)