-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (33 loc) · 1.01 KB
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "gaussian-preact"
version = "0.0.3"
dependencies = [
"scipy >= 1.9.3",
"numpy >= 1.23.5",
"torch >= 2.0.0",
"matplotlib >= 3.8.0"
]
requires-python = ">=3.8"
authors = [
{name = "Pierre Wolinski", email = "pierre.wolinski@normalesup.org"},
]
maintainers = [
{name = "Pierre Wolinski", email = "pierre.wolinski@normalesup.org"},
]
description="Computations related to the paper \"Gaussian Pre-Activations in Neural Networks: Myth or Reality?\""
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["machine learning", "deep learning", "pre-activations", "initialization"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python"
]
[tool.hatch.build.targets.wheel]
packages = ["src/gaussian_preact"]
[project.urls]
Homepage = "https://github.com/p-wol/gaussian-preact"
Documentation = "https://github.com/p-wol/gaussian-preact"
Repository = "https://github.com/p-wol/gaussian-preact"