-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (63 loc) · 1.91 KB
/
Copy pathpyproject.toml
File metadata and controls
73 lines (63 loc) · 1.91 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[metadata]
licence_files = ["LICENSE"]
[project]
name = "cosmotech-run-orchestrator"
authors = [{ name = "Cosmo Tech", email = "platform@cosmotech.com" }]
description = "Orchestration suite for Cosmotech Run Templates"
urls.Homepage = "https://www.cosmotech.com"
urls.Source = "https://github.com/Cosmo-Tech/run-orchestrator"
urls.Documentation = "https://cosmo-tech.github.io/run-orchestrator/"
dynamic = ["version", "dependencies", "optional-dependencies"]
readme = {file = "README.md", content-type = "text/markdown"}
[project.scripts]
csm-orc = "cosmotech.csm_orc.main:main"
"entrypoint.py" = "cosmotech.csm_orc.entrypoint:entrypoint_command"
[tool.pytest.ini_options]
pythonpath = ["."]
addopts = "--cov-report term-missing:skip-covered --cov=cosmotech.orchestrator"
[tool.black]
line-length = 120
target-version = ["py311"]
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| generated
| __pycache__
)/
'''
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
package-data."*" = [
"requirements.txt",
"requirements.doc.txt",
"requirements.test.txt",
"requirements.dev.txt",
"requirements.extra.txt",
"requirements.all.txt"
]
package-data."cosmotech.csm_orc_api" = ["static/**/*"]
zip-safe = false
[tool.setuptools.packages.find]
where = ["."]
include = ["cosmotech.*"]
exclude = ["cosmotech.visual_orchestrator", "cosmotech.visual_orchestrator.*"]
[tool.setuptools.dynamic]
version.attr = "cosmotech.orchestrator.__version__"
dependencies.file = "requirements.txt"
optional-dependencies.doc.file = "requirements.doc.txt"
optional-dependencies.test.file = "requirements.test.txt"
optional-dependencies.dev.file = "requirements.dev.txt"
optional-dependencies.extra.file = "requirements.extra.txt"
optional-dependencies.all.file = "requirements.all.txt"