-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (70 loc) · 1.86 KB
/
Copy pathpyproject.toml
File metadata and controls
79 lines (70 loc) · 1.86 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
74
75
76
77
78
79
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "distman"
version = "0.8.4"
description = "Simple software distribution for complex pipelines"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.8"
license = { text = "BSD-3-Clause" }
authors = [{ name = "Ryan Galloway", email = "ryan@rsgalloway.com" }]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"GitPython>=3.1,<4.0",
"tqdm>=4.67,<5.0",
]
[project.optional-dependencies]
minify = [
"htmlmin>=0.1,<1.0; python_version < '3.13'",
"jsmin>=3.0,<4.0",
]
dev = [
"pytest",
"pytest-mock",
"htmlmin>=0.1,<1.0; python_version < '3.13'",
"jsmin>=3.0,<4.0",
"flake8==7.1.1",
"mccabe==0.7.0",
"isort==5.13.2",
"black==24.8.0",
]
test = [
"pytest",
"pytest-mock",
"htmlmin>=0.1,<1.0; python_version < '3.13'",
"jsmin>=3.0,<4.0",
]
[project.urls]
Homepage = "https://distman.dev"
Documentation = "https://distman.dev"
Repository = "https://github.com/rsgalloway/distman"
Issues = "https://github.com/rsgalloway/distman/issues"
[project.scripts]
distman = "distman.cli:main"
dist = "distman.dist:main"
distcache = "distman.cache:main"
[tool.setuptools]
zip-safe = false
package-dir = {"" = "lib"}
[tool.setuptools.packages.find]
where = ["lib"]
[tool.isort]
profile = "black"
line_length = 100
skip_gitignore = true
[tool.black]
line-length = 100
target-version = ["py38"]