-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (51 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
64 lines (51 loc) · 1.27 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["setuptools>=64.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "jaxkan"
version = "0.3.7"
description = "A JAX implementation of Kolmogorov-Arnold Networks"
readme = "README.md"
keywords = ["JAX", "NNX", "KANs", "Kolmogorov-Arnold", "PIKAN"]
authors = [
{ name = "Spyros Rigas", email = "rigassp@gmail.com" },
{ name = "Michalis Papachristou", email = "mixpap@phys.uoa.gr" }
]
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License"
]
license = {file = "LICENSE"}
requires-python = ">=3.11,<3.13"
dependencies = [
"numpy>=2.3.5",
"scipy>=1.16.3",
"jax[cpu]>=0.8.1",
"optax>=0.2.6",
"flax>=0.12.1",
]
[project.urls]
Repository = "https://github.com/srigas/jaxkan"
Issues = "https://github.com/srigas/jaxkan/issues"
[project.optional-dependencies]
gpu = [
"jax[cuda12]>=0.8.1"
]
doc = [
"jupyterlab",
"matplotlib",
"scikit-learn",
"pytest",
"sphinx",
"sphinx-rtd-theme",
"sphinx-autobuild",
"myst-parser",
"sphinx_design",
"sphinx-autodoc-typehints",
"nbsphinx",
"pandoc",
]
[tool.setuptools.packages.find]
include = ["jaxkan*"]