Skip to content

Commit ffa6b80

Browse files
committed
Major TOML file update and refactoring of printed text PT.2
1 parent 6a2c0d9 commit ffa6b80

File tree

15 files changed

+7477
-355
lines changed

15 files changed

+7477
-355
lines changed
Binary file not shown.

build/lib.win-amd64-cpython-312/pyspector/rules/96-built-in-rules.toml

Lines changed: 833 additions & 0 deletions
Large diffs are not rendered by default.

build/lib.win-amd64-cpython-312/pyspector/rules/built-in-rules.toml

Lines changed: 2137 additions & 0 deletions
Large diffs are not rendered by default.

build/lib.win-amd64-cpython-312/pyspector/rules/original-built-in-rules.toml

Lines changed: 2806 additions & 0 deletions
Large diffs are not rendered by default.

src/pyspector.egg-info/PKG-INFO

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Metadata-Version: 2.4
2+
Name: pyspector
3+
Version: 0.1.0b0
4+
Classifier: Programming Language :: Rust
5+
Classifier: Programming Language :: Python :: 3
6+
Requires-Python: >=3.8
7+
Requires-Dist: click>=8.0
8+
Requires-Dist: toml>=0.10
9+
Requires-Dist: sarif-om>=1.0
10+
Requires-Dist: jinja2>=3.0
11+
Requires-Dist: textual>=0.60
12+
Requires-Dist: importlib_resources; python_version < "3.9"

src/pyspector.egg-info/SOURCES.txt

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
MANIFEST.in
2+
pyproject.toml
3+
setup.cfg
4+
setup.py
5+
src/pyspector/__init__.py
6+
src/pyspector/cli.py
7+
src/pyspector/config.py
8+
src/pyspector/reporting.py
9+
src/pyspector/triage.py
10+
src/pyspector.egg-info/PKG-INFO
11+
src/pyspector.egg-info/SOURCES.txt
12+
src/pyspector.egg-info/dependency_links.txt
13+
src/pyspector.egg-info/entry_points.txt
14+
src/pyspector.egg-info/not-zip-safe
15+
src/pyspector.egg-info/requires.txt
16+
src/pyspector.egg-info/top_level.txt
17+
src/pyspector/rules/__init__.py
18+
src/pyspector/rules/built-in-rules.toml
19+
src/pyspector/rules/original-built-in-rules.toml
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[console_scripts]
2+
pyspector = pyspector.cli:cli
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
click>=8.0
2+
toml>=0.10
3+
sarif-om>=1.0
4+
jinja2>=3.0
5+
textual>=0.60
6+
7+
[:python_version < "3.9"]
8+
importlib_resources

0 commit comments

Comments
 (0)