-
Notifications
You must be signed in to change notification settings - Fork 25
/
pyproject.toml
46 lines (40 loc) · 1.26 KB
/
pyproject.toml
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
38
39
40
41
42
43
44
45
46
[build-system]
requires = [
"setuptools>=60.0.0",
"setuptools_scm>=6.4.0",
"oldest-supported-numpy; python_version<='3.8'",
"numpy>=2.0.0; python_version>'3.8'",
"Cython>=3.0.0"
]
build-backend = "setuptools.build_meta"
[project]
name = "eigency"
dynamic = ["version"]
description = "Cython interface between the numpy arrays and the Matrix/Array classes of the Eigen C++ library"
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
dependencies = [
"numpy>=1.23.5",
]
authors = [
{name = "Wouter Boomsma", email = "wb@di.ku.dk"},
{name = "Felipe Bordeu", email = "felipebordeu@gmail.com"}
]
maintainers = [
{name = "Felipe Bordeu", email = "felipebordeu@gmail.com"},
{name = "Wouter Boomsma", email = "wb@di.ku.dk"}
]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: C++",
"Programming Language :: Cython",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.urls]
Homepage = "https://github.com/eigency-org/eigency"