Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
verimag
tempo
multidimensional_search
Commits
88b2d014
Commit
88b2d014
authored
Aug 20, 2020
by
EXT José Ignacio Requeno Jarabo
Browse files
Updating setup files
parent
686e37c0
Pipeline
#47952
passed with stages
in 23 minutes and 4 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
setup.py
View file @
88b2d014
...
...
@@ -84,6 +84,10 @@ def check_dependencies():
print
(
'Symbolic Python (SymPy) is not installed.
\n
This package is required for '
\
'ParetoLib.
\n\n
You can find SymPy at http://www.sympy.org'
)
return
(
False
)
if
(
not
can_import
(
'cython'
)):
print
(
'Cython is not installed.
\n
This package is required for '
\
'ParetoLib.
\n\n
You can find Cython at https://cython.org/'
)
return
(
False
)
# Exit automatically if running as part of some script
# if (not sys.stdout.isatty()):
# sys.exit(-1)
...
...
setup2.py
View file @
88b2d014
...
...
@@ -26,7 +26,8 @@ if __name__ == '__main__':
'numpy>=1.15'
,
'pytest>=2.0'
,
'sortedcontainers>=1.5.10'
,
'sympy>=1.1.1'
'sympy>=1.1.1'
,
'cython>=0.29'
],
#packages_dir={'': 'ParetoLib'},
#packages=setuptools.find_packages(exclude=['ParetoLib._py3k', 'Tests']),
...
...
setup_cython.py
View file @
88b2d014
...
...
@@ -101,7 +101,8 @@ if __name__ == '__main__':
'numpy>=1.15'
,
'pytest>=2.0'
,
'sortedcontainers>=1.5.10'
,
'sympy>=1.1.1'
'sympy>=1.1.1'
,
'cython>=0.29'
],
ext_modules
=
cythonize
(
module_list
=
extension_list
,
exclude
=
exclude_list
,
nthreads
=
cpu_count
()),
# packages_dir={'': 'ParetoLib'},
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment