veriq 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.
- veriq-0/.gitignore +10 -0
- veriq-0/.python-version +1 -0
- veriq-0/PKG-INFO +6 -0
- veriq-0/README.md +0 -0
- veriq-0/pyproject.toml +14 -0
- veriq-0/src/veriq/__init__.py +2 -0
- veriq-0/src/veriq/py.typed +0 -0
veriq-0/.gitignore
ADDED
veriq-0/.python-version
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.13
|
veriq-0/PKG-INFO
ADDED
veriq-0/README.md
ADDED
|
File without changes
|
veriq-0/pyproject.toml
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "veriq"
|
|
3
|
+
version = "0"
|
|
4
|
+
description = "Add your description here"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
authors = [
|
|
7
|
+
{ name = "Shunichiro Nomura", email = "nomura@space.t.u-tokyo.ac.jp" },
|
|
8
|
+
]
|
|
9
|
+
requires-python = ">=3.13"
|
|
10
|
+
dependencies = []
|
|
11
|
+
|
|
12
|
+
[build-system]
|
|
13
|
+
requires = ["hatchling"]
|
|
14
|
+
build-backend = "hatchling.build"
|
|
File without changes
|