-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (42 loc) · 1.08 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
43
44
[project]
name = "lmn"
version = "0.5.0"
description = "LMN: A simple launcher"
authors = [
{name = "Takuma Yoneda", email = "[email protected]"},
{name = "Takuma Yoneda",email = "[email protected]"}
]
dependencies = [
"colorlog",
"docker",
"fabric",
"randomname",
"simple_slurm_command",
"pyjson5",
"python-dotenv",
"python-on-whales>=0.68.0",
"pydantic>=2.5.2",
]
requires-python = ">=3.8"
readme = "README.md"
license = {text = "MIT License"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
[project.urls]
Homepage = "https://github.com/takuma-yoneda/lmn"
[project.scripts]
lmn = "lmn.cli:main"
[tool.pdm]
package-dir = "."
[build-system]
requires = ["pdm-pep517>=1.0.0"]
build-backend = "pdm.pep517.api"