-
Notifications
You must be signed in to change notification settings - Fork 51
/
setup.py
27 lines (24 loc) · 928 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
26
27
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
# taken from https://github.com/CEA-COSMIC/ModOpt/blob/master/setup.py
with open('requirements.txt') as open_file:
install_requires = open_file.read()
setuptools.setup(
name="fastmri-recon",
version="0.1.0",
author="Zaccharie Ramzi",
author_email="[email protected]",
description="Tools to benchmark different reconstruction neural nets on the fastMRI dataset",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/zaccharieramzi/fastmri-reproducible-benchmark",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=install_requires,
python_requires='>=3.6',
)