-
Notifications
You must be signed in to change notification settings - Fork 94
/
setup.py
28 lines (21 loc) · 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
#!/usr/bin/env python
import sys
import setuptools
python_version = sys.version[:3]
if (python_version != '3.6') & (python_version != '3.8'):
raise Exception('Setup.py only works with python version 3.6 or 3.8, not {}'.format(python_version))
else:
with open('requirements_python' + python_version + '.txt') as f:
required_packages = [line.strip() for line in f.readlines()]
print(setuptools.find_packages())
setuptools.setup(name='SynthSeg',
version='2.0',
license='Apache 2.0',
description='Domain-agnostic segmentation of brain scans',
author='Benjamin Billot',
url='https://github.com/BBillot/SynthSeg',
keywords=['segmentation', 'domain-agnostic', 'brain'],
packages=setuptools.find_packages(),
python_requires='>=3.6',
install_requires=required_packages,
include_package_data=True)