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
37be6719
Commit
37be6719
authored
1 month ago
by
Dominique Benielli
Browse files
Options
Downloads
Patches
Plain Diff
add pyproject.toml
parent
afcdbb43
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
pyproject.toml
+15
-0
15 additions, 0 deletions
pyproject.toml
setup.py
+3
-9
3 additions, 9 deletions
setup.py
with
18 additions
and
9 deletions
pyproject.toml
0 → 100644
+
15
−
0
View file @
37be6719
[build-system]
requires
=
["setuptools>
=
42
", "
wheel
", "
numpy
"]
build-backend
=
"setuptools.build_meta"
[project]
name
=
'scikit-multimodallearn'
dynamic
=
[
"version"
,
"readme"
]
requires-python
=
'>
=
3.6
'
[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.
setup.py
+
3
−
9
View file @
37be6719
...
...
@@ -45,7 +45,6 @@ from setuptools import setup, find_packages
from
distutils.command.clean
import
clean
as
_clean
from
distutils.dir_util
import
remove_tree
from
distutils.command.sdist
import
sdist
import
multimodal
try
:
import
numpy
...
...
@@ -140,7 +139,6 @@ class m_sdist(sdist):
def
setup_package
():
"""
Setup function
"""
name
=
'
scikit-multimodallearn
'
version
=
get_version
()
multimodal_dir
=
'
multimodal
'
...
...
@@ -177,15 +175,13 @@ def setup_package():
]
keywords
=
[
'
machine learning, supervised learning, classification, ensemble methods, boosting, kernel
'
]
packages
=
find_packages
(
exclude
=
[
'
*.tests
'
])
setup_requires
=
[
'
numpy
'
]
install_requires
=
[
'
scikit-learn==1.2.1
'
,
'
numpy
'
,
'
scipy
'
,
'
cvxopt
'
]
python_requires
=
'
>=3.6
'
extras_require
=
{
'
dev
'
:
[
'
pytest
'
,
'
pytest-cov
'
],
'
doc
'
:
[
'
sphinx==5.0
'
,
'
numpydoc
'
,
'
sphinx_gallery
'
,
'
matplotlib
'
,
"
sphinx_rtd_theme
"
]}
include_package_data
=
True
setup
(
name
=
name
,
# python_requires=python_requires,
setup
(
version
=
version
,
description
=
description
,
long_description
=
long_description
,
...
...
@@ -199,9 +195,7 @@ def setup_package():
classifiers
=
classifiers
,
keywords
=
keywords
,
packages
=
packages
,
setup_requires
=
setup_requires
,
install_requires
=
install_requires
,
python_requires
=
python_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