-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
30 lines (25 loc) · 1004 Bytes
/
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
[project]
name = "dadapy"
version = "0.3.2"
description = "Distance-based Analysis of DAta-manifolds in python"
authors = [{ name = "DADApy author"}]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.8"
dependencies = ["numpy<2.0", "scipy", "scikit-learn", "matplotlib", "seaborn", "tqdm",
'jax; python_version < "3.9"',
'jax==0.4.30; python_version >= "3.9"',
'jaxlib; python_version < "3.9"',
'jaxlib==0.4.30; python_version >= "3.9"',
'flax==0.8.5; python_version >= "3.9"']
[project.urls]
homepage = "https://github.com/sissa-data-science/DADApy"
documentation = "https://dadapy.readthedocs.io/"
repository = "https://github.com/sissa-data-science/DADApy"
[project.optional-dependencies]
dev = ["tox", "black", "isort", "pytest"]
[build-system]
requires = ["setuptools>=61", "numpy<2.0"]
build-backend = "setuptools.build_meta"
[tool.tox]
envlist = ["py38", "py39", "py310", "py311", "py12"]