forked from NVIDIA/modulus-launch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (34 loc) · 955 Bytes
/
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "nvidia-modulus.launch"
authors = [
{ name="NVIDIA Modulus Team"},
]
description = "Optimized tranining recipes for accelerating PyTorch workflows of AI driven surrogates for physical systems"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "Apache 2.0"}
dependencies = [
"nvidia-modulus>=0.2.1",
"hydra-core>=1.2.0",
"termcolor>=2.1.1",
"wandb>=0.13.7",
"mlflow>=2.1.1",
"pytest>=6.0.0",
"pydantic>=1.10.2",
"imageio>=2.28.1",
"moviepy>=1.0.3",
"tqdm>=4.60.0",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "modulus.launch.__version__"}
[tool.setuptools.packages.find]
include = ["modulus.*"]