ajprax 0.0.1__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,32 @@
1
+ {
2
+ "permissions": {
3
+ "allow": [
4
+ "Bash(grep:*)",
5
+ "Bash(find:*)",
6
+ "Bash(source:*)",
7
+ "Bash(hatch test:*)",
8
+ "Bash(sed:*)",
9
+ "Bash(python3:*)",
10
+ "Bash(hatch run:*)",
11
+ "Edit",
12
+ "MultiEdit",
13
+ "Write",
14
+ "Read",
15
+ "Update"
16
+ ],
17
+ "deny": []
18
+ },
19
+ "hooks": {
20
+ "PostToolUse": [
21
+ {
22
+ "matcher": "Edit|MultiEdit|Write",
23
+ "hooks": [
24
+ {
25
+ "type": "command",
26
+ "command": "git add -A && git commit -m \"claude wip\""
27
+ }
28
+ ]
29
+ }
30
+ ]
31
+ }
32
+ }
@@ -0,0 +1,5 @@
1
+ __pycache__/
2
+ .idea/
3
+ dist/
4
+ venv/
5
+ .env
@@ -0,0 +1 @@
1
+ 3.12.4
ajprax-0.0.1/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Aaron Feldstein
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
ajprax-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,20 @@
1
+ Metadata-Version: 2.4
2
+ Name: ajprax
3
+ Version: 0.0.1
4
+ Summary: A collection of generic utilities
5
+ Project-URL: Homepage, https://github.com/ajprax/python
6
+ Project-URL: Issues, https://github.com/ajprax/python/issues
7
+ Author-email: Aaron Feldstein <ajprax@gmail.com>
8
+ License-File: LICENSE
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Classifier: Programming Language :: Python :: 3
12
+ Requires-Python: >=3.8
13
+ Description-Content-Type: text/markdown
14
+
15
+ ## Pure-python utilities with no required dependencies.
16
+
17
+ ### Optional dependencies add functionality when available
18
+
19
+ * `crcmod`
20
+ * `tqdm`
ajprax-0.0.1/README.md ADDED
@@ -0,0 +1,6 @@
1
+ ## Pure-python utilities with no required dependencies.
2
+
3
+ ### Optional dependencies add functionality when available
4
+
5
+ * `crcmod`
6
+ * `tqdm`
@@ -0,0 +1,27 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "ajprax"
7
+ version = "0.0.1"
8
+ authors = [{ name = "Aaron Feldstein", email = "ajprax@gmail.com" }]
9
+ description = "A collection of generic utilities"
10
+ readme = "README.md"
11
+ requires-python = ">=3.8"
12
+ classifiers = [
13
+ "Programming Language :: Python :: 3",
14
+ "License :: OSI Approved :: MIT License",
15
+ "Operating System :: OS Independent",
16
+ ]
17
+ dependencies = []
18
+
19
+ [tool.hatch.envs.test]
20
+ dependencies = ["crcmod", "tqdm", "watchdog"]
21
+
22
+ [tool.hatch.envs.test.scripts]
23
+ watch = "python watch_tests.py"
24
+
25
+ [project.urls]
26
+ Homepage = "https://github.com/ajprax/python"
27
+ Issues = "https://github.com/ajprax/python/issues"
@@ -0,0 +1,2 @@
1
+ [pytest]
2
+ python_files = tests/*.py
File without changes