-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
add pyproject.toml
1 parent
4a0790e
commit 0d5be39
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/" |