nanitics 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.
- nanitics-0.0.0/.gitignore +73 -0
- nanitics-0.0.0/PKG-INFO +16 -0
- nanitics-0.0.0/README.md +5 -0
- nanitics-0.0.0/pyproject.toml +16 -0
- nanitics-0.0.0/src/nanitics/__init__.py +0 -0
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
# Environment variables (secrets)
|
|
2
|
+
.env
|
|
3
|
+
.env.local
|
|
4
|
+
.env.*.local
|
|
5
|
+
.env.production
|
|
6
|
+
!.env.example
|
|
7
|
+
!.env.template
|
|
8
|
+
!.vscode/.env
|
|
9
|
+
|
|
10
|
+
# Python
|
|
11
|
+
__pycache__/
|
|
12
|
+
*.py[cod]
|
|
13
|
+
*$py.class
|
|
14
|
+
*.so
|
|
15
|
+
*.egg-info/
|
|
16
|
+
*.egg
|
|
17
|
+
dist/
|
|
18
|
+
build/
|
|
19
|
+
*.whl
|
|
20
|
+
|
|
21
|
+
# Virtual environments
|
|
22
|
+
.venv/
|
|
23
|
+
venv/
|
|
24
|
+
ENV/
|
|
25
|
+
env/
|
|
26
|
+
|
|
27
|
+
# Node.js / Frontend
|
|
28
|
+
node_modules/
|
|
29
|
+
.next/
|
|
30
|
+
out/
|
|
31
|
+
.turbo/
|
|
32
|
+
npm-debug.log*
|
|
33
|
+
yarn-debug.log*
|
|
34
|
+
yarn-error.log*
|
|
35
|
+
.pnpm-debug.log*
|
|
36
|
+
|
|
37
|
+
# IDE
|
|
38
|
+
.idea/
|
|
39
|
+
*.swp
|
|
40
|
+
*.swo
|
|
41
|
+
*~
|
|
42
|
+
|
|
43
|
+
# OS
|
|
44
|
+
.DS_Store
|
|
45
|
+
Thumbs.db
|
|
46
|
+
*.tmp
|
|
47
|
+
|
|
48
|
+
# Testing
|
|
49
|
+
.pytest_cache/
|
|
50
|
+
.coverage
|
|
51
|
+
htmlcov/
|
|
52
|
+
coverage/
|
|
53
|
+
.check-output
|
|
54
|
+
|
|
55
|
+
# Logs
|
|
56
|
+
*.log
|
|
57
|
+
logs/
|
|
58
|
+
|
|
59
|
+
# Temporary files
|
|
60
|
+
*.bak
|
|
61
|
+
*.swn
|
|
62
|
+
.tmp/
|
|
63
|
+
|
|
64
|
+
# File storage
|
|
65
|
+
data/files/
|
|
66
|
+
|
|
67
|
+
# Validation trace outputs
|
|
68
|
+
validation/traces/
|
|
69
|
+
!validation/traces/.gitkeep
|
|
70
|
+
|
|
71
|
+
.claude
|
|
72
|
+
|
|
73
|
+
**/.env
|
nanitics-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: nanitics
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Name reserved by Solid Software B.V. — coming soon.
|
|
5
|
+
License: Apache-2.0
|
|
6
|
+
Classifier: Development Status :: 1 - Planning
|
|
7
|
+
Classifier: Intended Audience :: Developers
|
|
8
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
9
|
+
Requires-Python: >=3.9
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# nanitics
|
|
13
|
+
|
|
14
|
+
Name reserved by [Solid Software B.V.](https://nanitics.dev)
|
|
15
|
+
|
|
16
|
+
Coming soon.
|
nanitics-0.0.0/README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "nanitics"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Name reserved by Solid Software B.V. — coming soon."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "Apache-2.0"}
|
|
11
|
+
requires-python = ">=3.9"
|
|
12
|
+
classifiers = [
|
|
13
|
+
"Development Status :: 1 - Planning",
|
|
14
|
+
"License :: OSI Approved :: Apache Software License",
|
|
15
|
+
"Intended Audience :: Developers",
|
|
16
|
+
]
|
|
File without changes
|