-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
23 lines (21 loc) · 776 Bytes
/
pyproject.toml
File metadata and controls
23 lines (21 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "algopy"
dynamic = ["version", "description", "license", "authors", "keywords"]
readme = "README.rst"
dependencies = ["numpy>=2.0.0", "scipy>=1.14.0", "pytest>=8.2.2"]
requires-python = ">= 3.6"
maintainers = [
{name = "Sebastian F. Walter", email = "sebastian.walter@gmail.com"}
]
authors = [
{name = "Sebastian Walter", email = "sebastian.walter@gmail.com"},
{name = "Alexander Griffing", email = "argriffi@ncsu.edu"},
]
[project.urls]
Homepage = "https://www.github.com/b45ch1/algopy"
Documentation = "https://pythonhosted.org/algopy/"
Repository = "https://www.github.com/b45ch1/algopy"
Changelog = "https://github.com/b45ch1/algopy/blob/master/CHANGELOG.rst"