-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 847 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 847 Bytes
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
from setuptools import setup, find_packages
VERSION = '0.0.1'
DESCRIPTION = 'A package for creating modular data pipeline to process medical images'
# Setting up
setup(
name="frida",
version=VERSION,
author="Stefano Trebeschi",
author_email="<s.trebeschi@nki.nl>",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=DESCRIPTION,
packages=find_packages(),
install_requires=['simpleitk', 'numpy', 'scipy'],
keywords=['python', 'medical imaging', 'radiology', 'pipeline'],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
)