Skip to content

Commit

Permalink
replace setup.cfg with pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielBok committed Jun 8, 2024
1 parent 812f252 commit 16049c6
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 37 deletions.
44 changes: 44 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
[project]
name = "nlopt"
version = "2.7.1"
description = "Library for nonlinear optimization, wrapping many algorithms for global and local, constrained or unconstrained, optimization"
readme = "README.md"
readme-content-type = "text/markdown"
authors = [
{ name = "Daniel Bok", email = "daniel.bok@outlook.com" },
]
maintainers = [
{ name = "Daniel Bok", email = "daniel.bok@outlook.com" },
]
license = { text = "MIT" }
keywords = ["algorithms", "global local constrained unconstrained optimization", "optimization", "non-linear optimization"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Programming Language :: C++",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
]

[project.urls]
"Documentation" = "https://nlopt.readthedocs.io/en/latest/"
"Code" = "https://github.com/DanielBok/nlopt-python"
"Issue tracker" = "https://github.com/DanielBok/nlopt-python/issues"

[project.dependencies]
python = ">=3.9"

[build-system]
requires = ["setuptools", "numpy >= 1.18.5"]

37 changes: 0 additions & 37 deletions setup.cfg

This file was deleted.

0 comments on commit 16049c6

Please sign in to comment.