-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (32 loc) · 802 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (32 loc) · 802 Bytes
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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "devrun"
version = "0.1.0"
description = "Modular developer task orchestration system for heterogeneous compute backends."
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
dependencies = [
"typer>=0.9",
"pydantic>=1.10,<3",
"pyyaml>=6.0",
"omegaconf>=2.3",
"requests>=2.28",
"rich>=13.0",
"jinja2>=3.1",
]
[project.optional-dependencies]
dev = [
"pytest>=7",
"ruff>=0.1",
]
[project.scripts]
devrun = "devrun.cli:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["devrun*"]
[tool.setuptools.package-data]
devrun = ["configs/**/*.yaml", "configs/**/*.yml", "templates/**/*.j2"]