-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·45 lines (37 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
executable file
·45 lines (37 loc) · 1.14 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
# NEW VERSION TUTORIAL FOR MYSELF
# STEP 1 - COMMIT NEW CHANGES AND PUSH THEM
# STEP 2 - BUMP VERSION AND COMMIT IT (DONT PUSH!!!!)
# STEP 3 - CREATE TAG WITH THAT VERSION
# STEP 4 - PUSH (SYNC) CHANGES
# STEP 5 - PUSH TAG
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "torchzero"
description = "Modular optimization library for PyTorch."
version = "0.4.4"
dependencies = [
"torch",
"numpy",
"typing_extensions",
]
requires-python = ">= 3.10"
readme = "README.md"
authors = [
{name = "Ivan Nikishev", email = "nkshv2@gmail.com"},
]
license = {file = "LICENSE"}
keywords = ["optimization", "optimizers", "torch", "neural networks", "zeroth order", "second order"]
[project.urls]
Homepage = "https://github.com/inikishev/torchzero"
Repository = "https://github.com/inikishev/torchzero"
Issues = "https://github.com/inikishev/torchzero/isses"
# [tool.setuptools]
# package-dir = {"" = "src"}
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
[tool.setuptools.packages]
find = {} # Scanning implicit namespaces is active by default