-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
139 lines (132 loc) · 3.55 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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "changeguard"
version = "0.3.1"
description = "CLI to check if any of the original files in a repository/directory change over the course of a precommit script."
authors = [{name = "AYF", email = "realazthat@gmail.com"}]
license = {file = "LICENSE.md"}
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Operating System :: OS Independent",
'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'
]
dependencies = [
"markdown-it-py >=3,<4",
"mdurl >=0,<1",
"pathspec >=0.12,<1",
"pygments >=2,<3",
"pyyaml >=6,<7",
"rich >=13,<14",
"rich-argparse >=1,<2",
"types-pyyaml >=6,<7",
"typing-extensions >=4,<5"
]
keywords = [
]
[project.optional-dependencies]
# Set of dependencies that are known to work. To add a new dependency here, add
# a version range to the `projecct.dependencies` section above, and then run
# `EXTRA=prod bash scripts/pin-extra-reqs.sh`. Optionally, delete all the
# contents to repin all the dependencies (probably a good idea to do once in a
# while).
prod = [
"markdown-it-py==3.0.0",
"mdurl==0.1.2",
"pathspec==0.12.1",
"pygments==2.17.2",
"pyyaml==6.0.1",
"rich==13.7.1",
"rich-argparse==1.4.0",
"types-pyyaml==6.0.12.20240311",
"typing-extensions==4.10.0"
]
# Set of dev dependencies, all pinned, so that they are known to work. To add a
# new dependency here, add the unpinned package name here, and then run
# `EXTRA=dev bash scripts/pin-extra-reqs.sh`.
dev = [
"argcomplete==3.2.3",
"autoflake==2.3.1",
"certifi==2024.2.2",
"cffi==1.16.0",
"cfgv==3.4.0",
"charset-normalizer==3.3.2",
"colorama==0.4.6",
"cryptography==42.0.5",
"defusedxml==0.7.1",
"distlib==0.3.8",
"docutils==0.20.1",
"filelock==3.13.3",
"identify==2.5.35",
"idna==3.6",
"importlib-metadata==7.1.0",
"importlib-resources==6.4.0",
"isort==5.13.2",
"jaraco-classes==3.3.1",
"jaraco-context==4.3.0",
"jaraco-functools==4.0.0",
"jeepney==0.8.0",
"jinja2==3.1.3",
"keyring==25.0.0",
"markdown-it-py==3.0.0",
"markupsafe==2.1.5",
"mdurl==0.1.2",
"more-itertools==10.2.0",
"mypy==1.8.0",
"mypy-extensions==1.0.0",
"nh3==0.2.17",
"nodeenv==1.8.0",
"pathspec==0.12.1",
"pexpect==4.9.0",
"pip-licenses==4.3.4",
"pkginfo==1.10.0",
"platformdirs==4.2.0",
"pre-commit==3.5.0",
"prettytable==3.10.0",
"ptyprocess==0.7.0",
"pycparser==2.21",
"pyflakes==3.2.0",
"pygments==2.17.2",
"pyright==1.1.352",
"pyyaml==6.0.1",
"readme-renderer==43.0",
"requests==2.31.0",
"requests-toolbelt==1.0.0",
"rfc3986==2.0.0",
"rich==13.7.1",
"rich-argparse==1.4.0",
"secretstorage==3.3.3",
"snipinator==1.0.9",
"toml-sort==0.23.1",
"tomli==2.0.1",
"tomlkit==0.12.4",
"twine==5.0.0",
"types-colorama==0.4.15.20240311",
"types-pyyaml==6.0.12.20240311",
"typing-extensions==4.10.0",
"urllib3==2.2.1",
"virtualenv==20.25.1",
"wcwidth==0.2.13",
"xmltodict==0.13.0",
"yapf==0.40.2",
"yq==3.2.3",
"zipp==3.18.1"
]
[project.scripts]
changeguard = "changeguard.cli:main"
[project.urls]
Homepage = "https://github.com/realazthat/changeguard"
Documentation = "https://github.com/realazthat/changeguard"
Repository = "https://github.com/realazthat/changeguard"
[tool.changeguard-project-metadata]
last_unstable_release = "0.3.1"
last_stable_release = "0.3.1"
[tool.setuptools]
packages = ["changeguard"]
[tool.tomlsort]