-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
executable file
·42 lines (36 loc) · 1.1 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
37
38
39
40
41
42
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "torchy"
version = "0.1.3"
description = "A pytorch wrapper that makes .fit() (and others) possible in nn.Module!"
readme = "README.md"
requires-python = ">=3.6"
license = {file = "LICENSE.txt"}
keywords = ["Torch", "PyTorch", "Deep Learning", "Tensorflow"]
authors = [
{email = "codeashim@gmail.com"},
{name = "Ashim Dahal"}
]
# maintainers = [
# {name = "Brett Cannon", email = "brett@python.org"}
# ]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.7",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"torch>=1.12.1",
"tqdm"
]
repository = "https://github.com/ashimdahal/torchy.git"
# dynamic = ["version", "description"]
[project.urls]
# homepage = "https://example.com"
documentation = "https://github.com/ashimdahal/torchy/blob/master/docs/README.md"
repository = "https://github.com/ashimdahal/torchy.git"
Bugs = "https://github.com/ashimdahal/torchy/issues"