-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 966 Bytes
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 966 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
36
37
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "vector"
version = "12.1"
description = "An infinite-dimensional vector Python package."
readme = "README.md"
requires-python = ">=3.14"
authors = [
{name="Sebastian Gössl", email="goessl@student.tugraz.at"}
]
license = "MIT"
license-files = ["LICENSE"]
dependencies = [
"operationcounter @ git+https://github.com/goessl/operationcounter.git",
"numpy"
]
[project.urls]
Homepage = "https://github.com/goessl/vector"
Documentation = "https://goessl.github.io/vector"
Repository = "https://github.com/goessl/vector.git"
[project.optional-dependencies]
test = ["pytest"]
[[tool.setuptools.ext-modules]]
name = "vector._util"
sources = ["vector/_utilmodule.c"]
py-limited-api = true
[[tool.setuptools.ext-modules]]
name = "vector.multilinear_sparse._vectorspace"
sources = ["vector/multilinear_sparse/_vectorspacemodule.c"]
py-limited-api = true