qatration 0.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,40 @@
1
+ Metadata-Version: 2.4
2
+ Name: qatration
3
+ Version: 0.0.0
4
+ Summary: Name reservation. Adversarial testing for LLM features and agents — not released yet.
5
+ Author-email: QAtration <qatration@gmail.com>
6
+ License: Apache-2.0
7
+ Project-URL: Homepage, https://github.com/qatration/qatration
8
+ Project-URL: Source, https://github.com/qatration/qatration
9
+ Keywords: llm,security,red-team,prompt-injection,agents
10
+ Classifier: Development Status :: 1 - Planning
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: Apache Software License
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Topic :: Security
15
+ Requires-Python: >=3.9
16
+ Description-Content-Type: text/markdown
17
+
18
+ # QAtration
19
+
20
+ **This version is a name reservation. It is not the tool.**
21
+
22
+ `qatration` on PyPI is held so that `pip install qatration` cannot one day install somebody
23
+ else's code. That matters more here than for most packages: the tool this name will carry is a
24
+ security scanner, and its own documentation tells people to type that command.
25
+
26
+ Installing `0.0.0` gives you a package that does nothing and says so. The command exits
27
+ non-zero rather than succeeding silently, because a security tool that appears to run and
28
+ reports nothing is the worst possible failure mode.
29
+
30
+ ## What it will be
31
+
32
+ Adversarial testing for LLM features and agents. A benign baseline says when a breach is
33
+ unattributable — the property that separates *your bot leaked a key under attack* from *your
34
+ bot leaks that key to anyone who asks politely*, which is a different and usually worse finding.
35
+
36
+ Source, documentation and releases: **https://github.com/qatration/qatration**
37
+
38
+ ## Licence
39
+
40
+ Apache 2.0.
@@ -0,0 +1,23 @@
1
+ # QAtration
2
+
3
+ **This version is a name reservation. It is not the tool.**
4
+
5
+ `qatration` on PyPI is held so that `pip install qatration` cannot one day install somebody
6
+ else's code. That matters more here than for most packages: the tool this name will carry is a
7
+ security scanner, and its own documentation tells people to type that command.
8
+
9
+ Installing `0.0.0` gives you a package that does nothing and says so. The command exits
10
+ non-zero rather than succeeding silently, because a security tool that appears to run and
11
+ reports nothing is the worst possible failure mode.
12
+
13
+ ## What it will be
14
+
15
+ Adversarial testing for LLM features and agents. A benign baseline says when a breach is
16
+ unattributable — the property that separates *your bot leaked a key under attack* from *your
17
+ bot leaks that key to anyone who asks politely*, which is a different and usually worse finding.
18
+
19
+ Source, documentation and releases: **https://github.com/qatration/qatration**
20
+
21
+ ## Licence
22
+
23
+ Apache 2.0.
@@ -0,0 +1,30 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "qatration"
7
+ version = "0.0.0"
8
+ description = "Name reservation. Adversarial testing for LLM features and agents — not released yet."
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ license = { text = "Apache-2.0" }
12
+ authors = [{ name = "QAtration", email = "qatration@gmail.com" }]
13
+ keywords = ["llm", "security", "red-team", "prompt-injection", "agents"]
14
+ classifiers = [
15
+ "Development Status :: 1 - Planning",
16
+ "Intended Audience :: Developers",
17
+ "License :: OSI Approved :: Apache Software License",
18
+ "Programming Language :: Python :: 3",
19
+ "Topic :: Security",
20
+ ]
21
+
22
+ [project.urls]
23
+ Homepage = "https://github.com/qatration/qatration"
24
+ Source = "https://github.com/qatration/qatration"
25
+
26
+ [project.scripts]
27
+ qatration = "qatration.__main__:main"
28
+
29
+ [tool.setuptools.packages.find]
30
+ where = ["src"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,20 @@
1
+ """Name reservation for QAtration. The tool is not published here yet.
2
+
3
+ An empty package that imports silently is indistinguishable from a broken install, so this one
4
+ says what it is the moment anybody touches it. Importing gives a warning; running the command
5
+ prints the same sentence and exits non-zero, because a script that exits 0 having done nothing
6
+ is the shape of a check that passed without checking.
7
+ """
8
+
9
+ __version__ = "0.0.0"
10
+
11
+ NOTICE = (
12
+ "qatration 0.0.0 is a name reservation, not a release.\n"
13
+ "The tool it will hold is at https://github.com/qatration/qatration\n"
14
+ "Nothing here runs anything. Install a later version once one exists."
15
+ )
16
+
17
+
18
+ def __getattr__(name):
19
+ raise AttributeError(
20
+ "qatration 0.0.0 has no `%s`: this version is a name reservation. %s" % (name, NOTICE))
@@ -0,0 +1,15 @@
1
+ """`qatration` on the command line, saying plainly that there is nothing behind it yet."""
2
+ import sys
3
+
4
+ from . import NOTICE
5
+
6
+
7
+ def main():
8
+ # stderr and a non-zero exit, so a script that installs this and carries on gets stopped
9
+ # rather than believing it ran a security sweep.
10
+ print(NOTICE, file=sys.stderr)
11
+ return 1
12
+
13
+
14
+ if __name__ == "__main__":
15
+ sys.exit(main())
@@ -0,0 +1,40 @@
1
+ Metadata-Version: 2.4
2
+ Name: qatration
3
+ Version: 0.0.0
4
+ Summary: Name reservation. Adversarial testing for LLM features and agents — not released yet.
5
+ Author-email: QAtration <qatration@gmail.com>
6
+ License: Apache-2.0
7
+ Project-URL: Homepage, https://github.com/qatration/qatration
8
+ Project-URL: Source, https://github.com/qatration/qatration
9
+ Keywords: llm,security,red-team,prompt-injection,agents
10
+ Classifier: Development Status :: 1 - Planning
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: Apache Software License
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Topic :: Security
15
+ Requires-Python: >=3.9
16
+ Description-Content-Type: text/markdown
17
+
18
+ # QAtration
19
+
20
+ **This version is a name reservation. It is not the tool.**
21
+
22
+ `qatration` on PyPI is held so that `pip install qatration` cannot one day install somebody
23
+ else's code. That matters more here than for most packages: the tool this name will carry is a
24
+ security scanner, and its own documentation tells people to type that command.
25
+
26
+ Installing `0.0.0` gives you a package that does nothing and says so. The command exits
27
+ non-zero rather than succeeding silently, because a security tool that appears to run and
28
+ reports nothing is the worst possible failure mode.
29
+
30
+ ## What it will be
31
+
32
+ Adversarial testing for LLM features and agents. A benign baseline says when a breach is
33
+ unattributable — the property that separates *your bot leaked a key under attack* from *your
34
+ bot leaks that key to anyone who asks politely*, which is a different and usually worse finding.
35
+
36
+ Source, documentation and releases: **https://github.com/qatration/qatration**
37
+
38
+ ## Licence
39
+
40
+ Apache 2.0.
@@ -0,0 +1,9 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/qatration/__init__.py
4
+ src/qatration/__main__.py
5
+ src/qatration.egg-info/PKG-INFO
6
+ src/qatration.egg-info/SOURCES.txt
7
+ src/qatration.egg-info/dependency_links.txt
8
+ src/qatration.egg-info/entry_points.txt
9
+ src/qatration.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ qatration = qatration.__main__:main
@@ -0,0 +1 @@
1
+ qatration