-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
33 lines (31 loc) · 1.03 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dropgrad_dingo_actual"
version = "0.1.0"
dependencies = ["pytorch"]
authors = [
{name = "Ryan Taylor", email = "[email protected]"}
]
maintainers = [
{name = "Ryan Taylor", email = "[email protected]"}
]
description = "A PyTorch implementation of DropGrad regularization."
readme = "README.md"
requires-python = ">=3.7"
keywords = ["neural networks", "machine learning", "pytorch"]
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Operating System :: OS Independent"
]
[project.urls]
Repository = "https://github.com/dingo-actual/dropgrad"
Homepage = "https://github.com/dingo-actual/dropgrad"
Issues = "https://github.com/dingo-actual/dropgrad/issues"