-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 865 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 865 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "algormeter"
version = "1.1.1"
authors = [
{ name="Pietro d Alessandro", email="pietrodalessandro@gmail.com" },
]
description = "Tool for developing, testing and measuring optimizers algorithms"
keywords = ["convex-optimization", "optimization-algorithms","difference-convex-function"]
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Mathematics",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
]
dependencies = [
"pandas",
"matplotlib",
"numpy",
]
[project.urls]
"Homepage" = "https://github.com/xedla/algormeter.git"
"Bug Tracker" = "https://github.com/xedla/algormeter/issues"