-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 1.19 KB
/
Copy pathpyproject.toml
File metadata and controls
40 lines (35 loc) · 1.19 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "elliptic-functions"
version = "4.1.0"
description = "Elliptic integrals and functions — NumPy, PyTorch, JAX"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "GPL-2.0" }
authors = [{ name = "Igor Moiseev", email = "moiseev.igor@gmail.com" }]
keywords = ["elliptic integrals", "elliptic functions", "special functions", "mathematics"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Topic :: Scientific/Engineering :: Mathematics",
]
dependencies = [
"numpy>=1.24",
"array-api-compat>=1.9",
]
[project.urls]
Homepage = "https://github.com/moiseevigor/elliptic"
Repository = "https://github.com/moiseevigor/elliptic"
Documentation = "https://moiseevigor.github.io/elliptic/"
"Bug Tracker" = "https://github.com/moiseevigor/elliptic/issues"
[project.optional-dependencies]
torch = ["torch>=2.0"]
jax = ["jax>=0.4"]
dev = ["pytest>=7", "scipy>=1.8", "mpmath>=1.3"]
[tool.hatch.build.targets.wheel]
packages = ["elliptic"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short"