generated from sehoffmann/python-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (36 loc) · 1.2 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 = ["setuptools", "packaging", "wheel", "build", "pre-commit", "pytest"]
build-backend = "setuptools.build_meta"
[project]
name = "dmlcloud"
authors = [
{name = "Sebastian Hoffmann"}
]
description = "Distributed torch training using horovod and slurm"
requires-python = ">=3.10"
license = {file = "LICENSE"}
keywords = ["pytorch", "torch.distributed", "slurm", "distributed training", "deep learning"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dynamic = ["version", "readme", "dependencies"]
[project.urls]
Repository = "https://github.com/sehoffmann/dmlcloud"
[project.scripts]
dmlrun = "dmlcloud.run:main"
[tool.setuptools.packages.find]
include = ["dmlcloud*"]
namespaces = false
[tool.setuptools.dynamic]
version = {attr = "dmlcloud.__version__"}
readme = {file = ["README.md"], content-type = "text/markdown"}
dependencies = {file = ["requirements.txt"]}
[tool.black]
skip-string-normalization = true
line-length = 120
target-version = ["py310"]