auditi 0.1.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,81 @@
1
+ # =========================
2
+ # Python
3
+ # =========================
4
+ __pycache__/
5
+ *.py[cod]
6
+ *.pyo
7
+ *.pyd
8
+ *.egg-info/
9
+ .eggs/
10
+ .pytest_cache/
11
+ .mypy_cache/
12
+ .coverage
13
+ htmlcov/
14
+
15
+ # Virtual environments
16
+ venv/
17
+ .env/
18
+ .env.*
19
+ !.env.example
20
+ output.txt
21
+
22
+ # =========================
23
+ # Node / JavaScript
24
+ # =========================
25
+ node_modules/
26
+ npm-debug.log*
27
+ yarn-debug.log*
28
+ yarn-error.log*
29
+ pnpm-debug.log*
30
+
31
+ # Build outputs
32
+ dist/
33
+ build/
34
+
35
+ # =========================
36
+ # Frontend tooling
37
+ # =========================
38
+ .vite/
39
+ .cache/
40
+ .eslintcache
41
+
42
+ # =========================
43
+ # OS / Editor junk
44
+ # =========================
45
+ .DS_Store
46
+ Thumbs.db
47
+
48
+ .vscode/
49
+ .idea/
50
+
51
+ # =========================
52
+ # Logs
53
+ # =========================
54
+ *.log
55
+
56
+ # =========================
57
+ # Runtime / temp files
58
+ # =========================
59
+ *.tmp
60
+ *.swp
61
+ *.swo
62
+
63
+ # =========================
64
+ # Optional: local databases
65
+ # =========================
66
+ *.sqlite
67
+ *.db
68
+
69
+ # =========================
70
+ # Optional: uploads / generated assets
71
+ # =========================
72
+ uploads/
73
+ generated/
74
+
75
+ frontend/node_modules/
76
+
77
+ # Agents
78
+ .agentt
79
+ .claude
80
+
81
+ src/
auditi-0.1.0/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Auditi
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.