-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (35 loc) · 1.23 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
[project]
name = "racetrack_job_runner"
version = "1.17.0" # should be in sync with src/racetrack_job_wrapper/__init__.py
description = "Racetrack Job Runner"
license = {text = "Apache License 2.0"}
authors = [
{ name = "ERST", email = "noreply@erst.dk" },
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
]
readme = "README.md"
requires-python = ">=3.8"
dynamic = ["dependencies"]
[project.urls]
Homepage = "https://github.com/TheRacetrack/job-runner-python-lib"
[build-system]
requires = ["setuptools", "build", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"] # list of folders that contain the packages (["."] by default)
include = [ # package names should match these glob patterns (["*"] by default)
"racetrack_job_wrapper*",
]
exclude = ["tests*"]
namespaces = false # to disable scanning PEP 420 namespaces (true by default)
[project.scripts]
racetrack_job_wrapper = "racetrack_job_wrapper.main:main"
racetrack_job_runner = "racetrack_job_wrapper.main:main"