-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (52 loc) · 1.35 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (52 loc) · 1.35 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
46
47
48
49
50
51
52
53
54
55
56
57
58
[project]
name = "mgnet"
version = "0.1.2"
description = "Multigrid Neural Network implemented in PyTorch"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"torch>=2.10.0",
]
authors = [
{ name = 'AKJ7', email='[email protected]' }
]
license = "MIT"
license-file = ["LICENSE"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.black]
line-length = 120
target-version = ['py310']
skip-string-normalization = true
[tool.uv.workspace]
members = [
"mgnet",
"numpy"
]
[tool.uv-dynamic-versioning]
fallback-version = "0.0.0"
[dependency-groups]
dev = [
"black>=25.12.0",
"matplotlib>=3.10.8",
"numpy>=2.2.6",
"pillow>=12.0.0",
"torchvision>=0.25.0",
"torchviz>=0.0.3",
]
[build-system]
requires = ["uv_build>=0.9.18,<0.10.0", "uv-dynamic-versioning"]
build-backend = "uv_build"
[project.urls]
Homepage = "https://github.com/AKJ7/mgnet"