-
Notifications
You must be signed in to change notification settings - Fork 562
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move the most of metadata into PEP 621
-compliant pyproject.toml
.
#1006
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,87 @@ | ||||||||||||||||||||||
[build-system] | ||||||||||||||||||||||
requires = ["setuptools>=61.2", "numpy>=1.7",] | ||||||||||||||||||||||
build-backend = "setuptools.build_meta" | ||||||||||||||||||||||
|
||||||||||||||||||||||
[project] | ||||||||||||||||||||||
name = "GPy" | ||||||||||||||||||||||
authors = [{name = "GPy Authors: https://github.com/SheffieldML/GPy/graphs/contributors", email = "gpy.authors@gmail.com"},] | ||||||||||||||||||||||
license = {text = "BSD-3-Clause"} | ||||||||||||||||||||||
description = "The Gaussian Process Toolbox" | ||||||||||||||||||||||
readme = "README.rst" | ||||||||||||||||||||||
keywords = ["machine-learning", "gaussian-processes", "kernels",] | ||||||||||||||||||||||
classifiers = [ | ||||||||||||||||||||||
"License :: OSI Approved :: BSD License", | ||||||||||||||||||||||
"Natural Language :: English", | ||||||||||||||||||||||
"Operating System :: MacOS :: MacOS X", | ||||||||||||||||||||||
"Operating System :: Microsoft :: Windows", | ||||||||||||||||||||||
"Operating System :: POSIX :: Linux", | ||||||||||||||||||||||
"Programming Language :: Python :: 3.5", | ||||||||||||||||||||||
"Programming Language :: Python :: 3.6", | ||||||||||||||||||||||
"Programming Language :: Python :: 3.7", | ||||||||||||||||||||||
"Programming Language :: Python :: 3.8", | ||||||||||||||||||||||
"Programming Language :: Python :: 3.9", | ||||||||||||||||||||||
Comment on lines
+18
to
+22
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||
"Framework :: IPython", | ||||||||||||||||||||||
"Intended Audience :: Science/Research", | ||||||||||||||||||||||
"Intended Audience :: Developers", | ||||||||||||||||||||||
"Topic :: Software Development", | ||||||||||||||||||||||
"Topic :: Software Development :: Libraries :: Python Modules", | ||||||||||||||||||||||
] | ||||||||||||||||||||||
dependencies = [ | ||||||||||||||||||||||
"numpy>=1.7", | ||||||||||||||||||||||
"six", | ||||||||||||||||||||||
"paramz>=0.9.0", | ||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||
"cython>=0.29", | ||||||||||||||||||||||
"scipy>=1.3.0; python_version >= '3.6'", | ||||||||||||||||||||||
"scipy>=1.3.0,<1.5.0; python_version < '3.6'", | ||||||||||||||||||||||
Comment on lines
+34
to
+35
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||
] | ||||||||||||||||||||||
dynamic = ["version",] | ||||||||||||||||||||||
|
||||||||||||||||||||||
[project.urls] | ||||||||||||||||||||||
Homepage = "https://sheffieldml.github.io/GPy/" | ||||||||||||||||||||||
Download = "https://github.com/SheffieldML/GPy/archive/refs/heads/devel.zip" | ||||||||||||||||||||||
"Source Code" = "https://github.com/SheffieldML/GPy" | ||||||||||||||||||||||
"Bug Tracker" = "https://github.com/SheffieldML/GPy/issues" | ||||||||||||||||||||||
|
||||||||||||||||||||||
[project.optional-dependencies] | ||||||||||||||||||||||
docs = ["sphinx"] | ||||||||||||||||||||||
optional = ["mpi4py", "ipython>=4.0.0"] | ||||||||||||||||||||||
plotting = [ | ||||||||||||||||||||||
"matplotlib==3.3.4; python_version >= '3.6'", | ||||||||||||||||||||||
"matplotlib==3.0.0; python_version < '3.6'", | ||||||||||||||||||||||
Comment on lines
+49
to
+50
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||
"plotly >= 1.8.6", | ||||||||||||||||||||||
] | ||||||||||||||||||||||
notebook = [ | ||||||||||||||||||||||
"jupyter_client >= 4.0.6", | ||||||||||||||||||||||
"ipywidgets >= 4.0.3", | ||||||||||||||||||||||
"ipykernel >= 4.1.0", | ||||||||||||||||||||||
"notebook >= 4.0.5", | ||||||||||||||||||||||
] | ||||||||||||||||||||||
|
||||||||||||||||||||||
[tool.setuptools] | ||||||||||||||||||||||
package-dir = {GPy = "GPy"} | ||||||||||||||||||||||
py-modules = ["GPy.__init__"] | ||||||||||||||||||||||
packages = [ | ||||||||||||||||||||||
"GPy", | ||||||||||||||||||||||
"GPy.core", | ||||||||||||||||||||||
"GPy.core.parameterization", | ||||||||||||||||||||||
"GPy.kern", | ||||||||||||||||||||||
"GPy.kern.src", | ||||||||||||||||||||||
"GPy.kern.src.psi_comp", | ||||||||||||||||||||||
"GPy.models", | ||||||||||||||||||||||
"GPy.inference", | ||||||||||||||||||||||
"GPy.inference.optimization", | ||||||||||||||||||||||
"GPy.inference.mcmc", | ||||||||||||||||||||||
"GPy.inference.latent_function_inference", | ||||||||||||||||||||||
"GPy.likelihoods", | ||||||||||||||||||||||
"GPy.mappings", | ||||||||||||||||||||||
"GPy.examples", | ||||||||||||||||||||||
"GPy.testing", | ||||||||||||||||||||||
"GPy.util", | ||||||||||||||||||||||
"GPy.plotting", | ||||||||||||||||||||||
"GPy.plotting.gpy_plot", | ||||||||||||||||||||||
"GPy.plotting.matplot_dep", | ||||||||||||||||||||||
"GPy.plotting.matplot_dep.controllers", | ||||||||||||||||||||||
"GPy.plotting.plotly_dep", | ||||||||||||||||||||||
] | ||||||||||||||||||||||
include-package-data = true | ||||||||||||||||||||||
#test-suite = "GPy.testing" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.