-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (38 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
45 lines (38 loc) · 1.34 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
[build-system]
# metadata-version = "2.2" because twine only supports up to version 2.2
requires = ["setuptools==75.8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "rsyncdirector"
version = "0.1.4"
authors = [{ name = "Ryan Chapin", email = "rchapin@nbinteractive.com" }]
description = "A tool to orchestrate rsyncing of data between multiple machines and instances of rsyncdirector"
license = { file = "LICENSE" }
requires-python = ">=3.13"
dynamic = ["readme", "dependencies", "optional-dependencies"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
]
[project.scripts]
rsyncdirector = "rsyncdirector.main:main"
[project.urls]
Homepage = "https://github.com/rchapin/rsyncdirector"
readme = "https://github.com/rchapin/rsyncdirector/README.md"
[tool.setuptools.dynamic]
readme = { file = ["README.md"], content-type = "text/markdown"}
dependencies = { file = ["requirements.txt"] }
optional-dependencies.test = { file = ["requirements_test.txt"] }
optional-dependencies.dev = { file = ["requirements_dev.txt"] }
[tool.setuptools.packages.find]
where = ["."]
include = ["rsyncdirector*"]
exclude = [
"rsyncdirector.integration_tests*",
"rsyncdirector.tests*",
"rsyncdirector.resources*",
"deployment*",
]
[tool.black]
line-length = 100