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
Baptiste Bauvin
Supervised MultiModal Integration Tool
Commits
bd1b8d1d
Commit
bd1b8d1d
authored
Mar 25, 2022
by
Baptiste Bauvin
Browse files
Requirements
parent
54796fe6
Pipeline
#9548
failed with stage
in 33 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
setup.py
View file @
bd1b8d1d
# -*- coding: utf-8 -*-
# -*- coding: utf-8 -*-
#Extracting requrements from requirements.txt
#Extracting requrements from requirements.txt
with
open
(
'requirements.txt'
)
as
f
:
#
with open('requirements.txt') as f:
requirements
=
f
.
read
().
splitlines
()
#
requirements = f.read().splitlines()
# from Cython.Build import cythonize
# from Cython.Build import cythonize
from
setuptools
import
setup
,
find_packages
from
setuptools
import
setup
,
find_packages
...
@@ -55,7 +55,12 @@ def setup_package():
...
@@ -55,7 +55,12 @@ def setup_package():
# dependency_links=['https://github.com/aldro61/pyscm.git#egg=pyscm'],
# dependency_links=['https://github.com/aldro61/pyscm.git#egg=pyscm'],
# Une url qui pointe vers la page officielle de votre lib
# Une url qui pointe vers la page officielle de votre lib
url
=
'http://gitlab.lis-lab.fr/baptiste.bauvin/summit/'
,
url
=
'http://gitlab.lis-lab.fr/baptiste.bauvin/summit/'
,
install_requires
=
requirements
,
install_requires
=
[
'h5py>=2.9.0'
,
'joblib>=0.13.2'
,
'numpy>=1.16.4'
,
'pyparsing>=2.4.0'
,
'python-dateutil>=2.8.0'
,
'scikit-learn>=0.19.0'
,
'scipy>=1.3.0'
,
'six>=1.12.0'
,
'pandas>=0.23.3'
,
'pyyaml>=3.12'
,
'plotly>=4.2.1'
,
'matplotlib>=3.1.1'
,
'tabulate>=0.8.6'
,
'pyscm-ml>=1.0.0'
,
'git+https://github.com/thibgo/randomscm/archive/refs/tags/v0.0.0-alpha.zip'
],
extras_require
=
{
extras_require
=
{
'dev'
:
[
'pytest'
,
'pytest-cov'
],
'dev'
:
[
'pytest'
,
'pytest-cov'
],
'doc'
:
[
'sphinx >= 3.0.2'
,
'numpydoc'
,
'docutils'
,
'sphinx-autoapi'
,
'doc'
:
[
'sphinx >= 3.0.2'
,
'numpydoc'
,
'docutils'
,
'sphinx-autoapi'
,
...
...
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