-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
facf203
commit c7b04b7
Showing
1 changed file
with
2 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,10 +11,6 @@ | |
from __future__ import print_function | ||
import os | ||
from setuptools import setup, find_packages | ||
try: | ||
from pip._internal.main import main as pip_main | ||
except: | ||
from pip._internal import main as pip_main | ||
|
||
# Global parameters | ||
CLASSIFIERS = [ | ||
|
@@ -24,15 +20,11 @@ | |
"Programming Language :: Python", | ||
"Topic :: Scientific/Engineering"] | ||
AUTHOR = """ | ||
Antoine Grigis <antoine.grigis@cea.fr> | ||
Samuel Farrens <[email protected]> | ||
Chaithya G R <chaithya.giliyarradhakrishna@cea.fr> | ||
Pierre-Antoine Comby <[email protected]> | ||
Jean-Luc Starck <[email protected]> | ||
Philippe Ciuciu <[email protected]> | ||
""" | ||
# Write setup | ||
setup_requires = ["numpy>=1.16.4", "cython>=0.27.3", "pytest-runner"] | ||
|
||
pip_main(['install'] + setup_requires) | ||
|
||
setup( | ||
name="pysap-mri", | ||
|