Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
scikit-multimodallearn
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dev
scikit-multimodallearn
Commits
262a4834
Commit
262a4834
authored
1 month ago
by
Dominique Benielli
Browse files
Options
Downloads
Patches
Plain Diff
add pyproject.toml
parent
37be6719
No related branches found
No related tags found
No related merge requests found
Pipeline
#16269
failed
1 month ago
Stage: test
Changes
3
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
pyproject.toml
+42
-4
42 additions, 4 deletions
pyproject.toml
requirements.txt
+1
-1
1 addition, 1 deletion
requirements.txt
setup.py
+7
-42
7 additions, 42 deletions
setup.py
with
50 additions
and
47 deletions
pyproject.toml
+
42
−
4
View file @
262a4834
...
...
@@ -4,12 +4,50 @@ build-backend = "setuptools.build_meta"
[project]
name
=
'scikit-multimodallearn'
dynamic
=
[
"version"
,
"
readme
"
]
dynamic
=
[
"version"
,
"
dependencies
"
]
requires-python
=
'>
=
3.6
'
license
=
'BSD-3-Clause'
license-files
=
[
'license.txt'
]
readme
=
{
file
=
"README.rst"
,
content-type
=
"text/x-rst"
}
description
=
'A scikit-learn compatible package for multimodal Classifiers'
authors
=
[
{name
=
"Dominique Benielli"
,
email
=
"dominique.benielli@univ-amu.fr"
}
,
{name
=
"Sokol Koço"
}
,
{name
=
"Florent Jaillet"
}
,
{name
=
"Riikka Huusari"
}
,
{name
=
"Cécile Capponi"
}
,
{name
=
"Baptiste Bauvin"
}
,
{name
=
"Hachem Kadri'"
}
]
classifiers
=[
'Development Status :: 5 - Production/Stable'
,
'Intended Audience :: Science/Research'
,
'Programming Language :: Python :: 3'
,
'Programming Language :: Python :: 3.6'
,
'Programming Language :: Python :: 3.7'
,
'Programming Language :: Python :: 3.8'
,
'Programming Language :: Python :: 3.9'
,
'Topic :: Scientific/Engineering'
,
'Topic :: Scientific/Engineering :: Artificial Intelligence'
,
'Operating System :: Microsoft :: Windows'
,
'Operating System :: POSIX :: Linux'
,
'Operating System :: MacOS :: MacOS X'
,
]
keywords
=
[
'machine learning, supervised learning, classification, ensemble methods, boosting, kernel'
]
[project.optional-dependencies]
test
=
[
'pytest'
,
'coverage=
=
4.5
.
3
', '
pytest-cov
']
dev
=
['sphinx=
=
5.0
', '
numpydoc
', '
sphinx_gallery
', '
matplotlib
', "sphinx_rtd_theme"]
[
project.urls
]
Homepage
=
'https://github.com/multi-learn/scikit-multimodallearn'
Documentation
=
'https://multi-learn.github.io/scikit-multimodallearn/'
Issues
=
'"https://github.com/multi-learn/scikit-multimodallearn/issues'
[
tool.setuptools.dynamic
]
dependencies
=
{
file
=
[
"requirements.txt"
]}
[
tool.setuptools.packages.find
]
where
=
[
"."
]
[tool.setuptools.dynamic]
version
=
{
attr
=
"multimodal.__version__"
}
readme
=
{
file
=
[
"README.rst"
]}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
requirements.txt
+
1
−
1
View file @
262a4834
numpy
==1.24.1
cvxopt
==1.3.0
six
coverage
==4.5.3
#
coverage==4.5.3
This diff is collapsed.
Click to expand it.
setup.py
+
7
−
42
View file @
262a4834
...
...
@@ -143,60 +143,25 @@ def setup_package():
version
=
get_version
()
multimodal_dir
=
'
multimodal
'
set_version
(
multimodal_dir
,
version
)
description
=
'
A scikit-learn compatible package for multimodal Classifiers
'
here
=
os
.
path
.
abspath
(
os
.
path
.
dirname
(
__file__
))
open
(
'
README.rst
'
).
read
(),
# Or 'README.rst', depending on your format
long_description_content_type
=
'
text/x-rst
'
with
open
(
os
.
path
.
join
(
here
,
'
README.rst
'
),
encoding
=
'
utf-8
'
)
as
readme
:
long_description
=
readme
.
read
()
group
=
'
dev
'
url
=
'
https://gitlab.lis-lab.fr/{}/{}
'
.
format
(
group
,
name
)
project_urls
=
{
'
Documentation
'
:
'
http://{}.pages.lis-lab.fr/{}
'
.
format
(
group
,
name
),
'
Source
'
:
url
,
'
Tracker
'
:
'
{}/issues
'
.
format
(
url
)}
author
=
'
Dominique Benielli and Sokol Koço and Florent Jaillet and Riikka Huusari
'
\
'
and Baptiste Bauvin and Cécile Capponi and Hachem Kadri
'
author_email
=
'
contact.dev@lis-lab.fr
'
license
=
'
BSD-3-Clause
'
classifiers
=
[
'
Development Status :: 5 - Production/Stable
'
,
'
Intended Audience :: Science/Research
'
,
'
Programming Language :: Python :: 3
'
,
'
Programming Language :: Python :: 3.6
'
,
'
Programming Language :: Python :: 3.7
'
,
'
Programming Language :: Python :: 3.8
'
,
'
Programming Language :: Python :: 3.9
'
,
'
Topic :: Scientific/Engineering
'
,
'
Topic :: Scientific/Engineering :: Artificial Intelligence
'
,
'
Operating System :: Microsoft :: Windows
'
,
'
Operating System :: POSIX :: Linux
'
,
'
Operating System :: MacOS :: MacOS X
'
,
]
keywords
=
[
'
machine learning, supervised learning, classification, ensemble methods, boosting, kernel
'
]
# url = 'https://gitlab.lis-lab.fr/{}/{}'.format(group, name)
# project_urls = {
# 'Documentation': 'http://{}.pages.lis-lab.fr/{}'.format(group, name),
# 'Source': url,
# 'Tracker': '{}/issues'.format(url)}
packages
=
find_packages
(
exclude
=
[
'
*.tests
'
])
install_requires
=
[
'
scikit-learn==1.2.1
'
,
'
numpy
'
,
'
scipy
'
,
'
cvxopt
'
]
extras_require
=
{
'
dev
'
:
[
'
pytest
'
,
'
pytest-cov
'
],
'
doc
'
:
[
'
sphinx==5.0
'
,
'
numpydoc
'
,
'
sphinx_gallery
'
,
'
matplotlib
'
,
"
sphinx_rtd_theme
"
]}
include_package_data
=
True
# python_requires=python_requires,
# python_requires=python_requires, description=description,author=author,
# classifiers=classifiers, keywords=keywords, install_requires=install_requires,
setup
(
version
=
version
,
description
=
description
,
long_description
=
long_description
,
long_description_content_type
=
long_description_content_type
,
url
=
url
,
project_urls
=
project_urls
,
author
=
author
,
author_email
=
author_email
,
license
=
license
,
license_files
=
[
'
license.txt
'
],
classifiers
=
classifiers
,
keywords
=
keywords
,
packages
=
packages
,
install_requires
=
install_requires
,
extras_require
=
extras_require
,
include_package_data
=
include_package_data
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment