-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
28 lines (27 loc) · 1.23 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
from setuptools import find_packages, setup
setup(
name="XrayTo3DShape",
version="0.1.0",
description="Benchmarking utils and scripts for training Deep Learning Models for X-ray to 3D Shape Reconstruction",
url="https://github.com/naamiinepal/xrayto3D-benchmark",
author="Nepal Applied Mathematics and Informatics Institute for Research",
author_email="[email protected]",
packages=find_packages(exclude=["build", "docs"]),
# install_requires=[
# 'simpleitk<2.1.0', # temporary fix ITK ERROR: ITK only supports orthonormal direction cosines. No orthonormal definition found!
# 'omegaconf',
# 'nibabel',
# 'pandas'
# ],
keywords="Python benchmark biomedical",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
# Pick your license as you wish (should match "license" above)
"License :: OSI Approved :: MIT License",
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
"Programming Language :: Python :: 3.6",
],
)