Skip to content

Commit

Permalink
add pyproject.toml
Browse files Browse the repository at this point in the history
SimonBlanke committed Mar 21, 2024

Verified

This commit was signed with the committer’s verified signature.
chenrui333 Rui Chen
1 parent 4a0790e commit 0d5be39
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[tool.setuptools.packages]
find = {}

[project]
name = "surfaces"
version = "0.3.0"
description = "A collection and visualization of black-box objective functions"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = ["visualization", "data-science"]
authors = [
{name = "Simon Blanke", email = "[email protected]" }
]
maintainers = [
{name = "Simon Blanke", email = "[email protected]" }
]
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
]

[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}

[project.optional-dependencies]
dev = ["check-manifest"]
test = ["coverage"]

[project.urls]
"Homepage" = "https://github.com/SimonBlanke/Surfaces"
"Bug Reports" = "https://github.com/SimonBlanke/Surfaces/issues"
"Source" = "https://github.com/SimonBlanke/Surfaces/"

0 comments on commit 0d5be39

Please sign in to comment.