-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
37 lines (34 loc) · 938 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
31
32
33
34
35
36
37
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pyscnn"
version = "0.0.9-beta"
authors = [
{ name="Aaron Mishkin", email="amishkin@cs.stanford.edu" },
]
description = "Scalable Convex Neural Networks: a package for fasts convex optimization of shallow neural networks."
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=1.21.3",
"torch>=1.10.0",
"cvxpy>=1.2.1",
"scikit-learn>=1.0.0",
"scipy>=1.7.2",
"typing_extensions",
"tqdm",
"opt_einsum",
"linalg_backends"
]
[tool.setuptools.package-data]
scnn = ["py.typed"]
[project.urls]
"Homepage" = "https://github.com/pilancilab/scnn"
"Bug Tracker" = "https://github.com/pilancilab/scnn/issues"