-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
105 lines (97 loc) · 2.75 KB
/
Copy pathpyproject.toml
File metadata and controls
105 lines (97 loc) · 2.75 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[project]
name = "torchcurves"
dynamic = ["version"]
description = "PyTorch module for differentiable parametric curves with learnable coefficients"
authors = [
{ name = "Alex Shtoff", email = "alex.shtf@gmail.com" }
]
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE"]
requires-python = ">=3.9"
keywords = [
"pytorch",
"b-spline",
"bspline",
"splines",
"parametric-curves",
"differentiable",
"kan",
"kolmogorov-arnold-networks",
"legendre-polynomials",
"function-approximation",
"continuous-embeddings",
"scientific-computing",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"torch>=2.2.0",
]
[dependency-groups]
dev = [
"numpy>=1.17.0",
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"ruff>=0.1.0",
"pyright>=1.1.351",
"pre-commit>=3.0.0",
"pytest-benchmark>=5.2.0",
"scipy>=1.13.1",
"jupyter==1.0.0",
]
doc = [
"sphinx>=7.4.7",
"myst-parser>=3.0.1",
"sphinx-autodoc-typehints>=2.3.0",
"sphinx-copybutton>=0.5.2",
"sphinx-autobuild>=2024.10.3",
"sphinxext-opengraph>=0.10.0",
"pydata-sphinx-theme>=0.16.1",
"ipython>=8.18.1",
"nbsphinx>=0.9.7",
"pandoc>=2.4",
]
examples = [
"ipykernel>=6.29.0",
"matplotlib>=3.8.0",
"ipywidgets>=8.1.7",
"kagglehub[pandas-datasets]>=0.3.12",
"pandas>=2.3.0",
"scikit-learn>=1.6.1",
"scipy>=1.13.1",
]
[project.urls]
Homepage = "https://github.com/alexshtf/torchcurves"
Repository = "https://github.com/alexshtf/torchcurves"
Issues = "https://github.com/alexshtf/torchcurves/issues"
Documentation = "https://torchcurves.readthedocs.io/en/stable/"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/torchcurves"]
[tool.hatch.version]
path = "src/torchcurves/__init__.py"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = [ "E", "W", "F", "I", "B", "C4", "N", "D", "SIM",]
extend-select = [ "RUF100",]
ignore = [ "E101", "D100", "D101", "D102", "D103", "D104", "D105", "D106", "D107", "B024",]
fixable = [ "ALL",]