forked from ANTsX/ANTsPyMM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (16 loc) · 666 Bytes
/
setup.py
File metadata and controls
20 lines (16 loc) · 666 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
long_description = open("README.md").read()
with open("./requirements.txt") as f:
requirements = f.read().splitlines()
setup(name='antspymm',
version='0.8.1',
description='multi-channel/time-series medical image processing with antspyx',
long_description=long_description,
long_description_content_type="text/markdown; charset=UTF-8; variant=GFM",
url='https://github.com/stnava/ANTsPyMM',
author='Avants, Gosselin, Tustison, Reardon',
author_email='[email protected]',
license='Apache 2.0',
install_requires=requirements,
packages=['antspymm'],
zip_safe=False)