-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (28 loc) · 931 Bytes
/
pyproject.toml
File metadata and controls
36 lines (28 loc) · 931 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "ipet"
version = "1.1.2"
description = "Interactive Performance Evaluation Tools"
license = "MIT"
requires-python = ">= 3.11"
readme = "README.md"
dynamic = ["dependencies", "optional-dependencies"]
authors = [
{ name = "Zuse Institute Berlin", email = "hendel@zib.de" }
]
maintainers = [
{ name = "Zuse Institute Berlin", email = "hendel@zib.de" }
]
keywords = ["mathematical optimization", "solver", "log benchmark", "parser"]
urls = { "Homepage"= "https://github.com/scipopt/ipet" }
classifiers = [
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
optional-dependencies.dev = {file = ["requirements-dev.txt"]}