Skip to content

Commit

Permalink
Replace setup.py with pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
jungtaekkim committed Feb 27, 2024
1 parent 5b26b1d commit 620c08b
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 36 deletions.
41 changes: 41 additions & 0 deletions pyproject.toml
@@ -0,0 +1,41 @@
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools",
"setuptools-scm",
"numpy",
]

[tool.setuptools]
packages = ["bayeso_benchmarks"]

[project]
name = "bayeso-benchmarks"
version = "0.2.0"
authors = [
{name = "Jungtaek Kim", email = "jungtaek.kim.mail@gmail.com"},
]
description = "Benchmark functions for Bayesian optimization"
readme = "README.md"
requires-python = ">=3.6"
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]

[project.urls]
Homepage = "https://bayeso.org"
Source = "https://github.com/jungtaekkim/bayeso-benchmarks"
Issues = "https://github.com/jungtaekkim/bayeso-benchmarks/issues"

[tool.pip-compile.optional-dependencies]
dev = [
"pytest",
"scipy",
"matplotlib",
]
3 changes: 0 additions & 3 deletions requirements-dev.txt

This file was deleted.

1 change: 0 additions & 1 deletion requirements.txt

This file was deleted.

32 changes: 0 additions & 32 deletions setup.py

This file was deleted.

0 comments on commit 620c08b

Please sign in to comment.