autoinference 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,27 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *.egg-info/
5
+ dist/
6
+ build/
7
+ .venv/
8
+ venv/
9
+
10
+ # Node
11
+ node_modules/
12
+ npm-debug.log*
13
+ *.tgz
14
+
15
+ # Rust
16
+ target/
17
+ Cargo.lock
18
+
19
+ # Go
20
+ *.test
21
+ *.out
22
+
23
+ # OS / editor
24
+ .DS_Store
25
+ .idea/
26
+ .vscode/
27
+ *.swp
@@ -0,0 +1,34 @@
1
+ Metadata-Version: 2.4
2
+ Name: autoinference
3
+ Version: 0.0.1
4
+ Summary: Placeholder for the autoinference library. Work in progress.
5
+ Project-URL: Homepage, https://github.com/autoinference/autoinference
6
+ Project-URL: Repository, https://github.com/autoinference/autoinference
7
+ Project-URL: Issues, https://github.com/autoinference/autoinference/issues
8
+ Author-email: autoinference <noreply@autoinference.dev>
9
+ License-Expression: MIT
10
+ Keywords: ai,autoinference,inference,ml
11
+ Classifier: Development Status :: 1 - Planning
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3 :: Only
16
+ Requires-Python: >=3.8
17
+ Description-Content-Type: text/markdown
18
+
19
+ # autoinference (Python)
20
+
21
+ Placeholder for the `autoinference` library. Work in progress.
22
+
23
+ ```bash
24
+ pip install autoinference
25
+ # or
26
+ uv add autoinference
27
+ ```
28
+
29
+ ```python
30
+ import autoinference
31
+ print(autoinference.__version__)
32
+ ```
33
+
34
+ See https://github.com/autoinference/autoinference for source and roadmap.
@@ -0,0 +1,16 @@
1
+ # autoinference (Python)
2
+
3
+ Placeholder for the `autoinference` library. Work in progress.
4
+
5
+ ```bash
6
+ pip install autoinference
7
+ # or
8
+ uv add autoinference
9
+ ```
10
+
11
+ ```python
12
+ import autoinference
13
+ print(autoinference.__version__)
14
+ ```
15
+
16
+ See https://github.com/autoinference/autoinference for source and roadmap.
@@ -0,0 +1,28 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "autoinference"
7
+ version = "0.0.1"
8
+ description = "Placeholder for the autoinference library. Work in progress."
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ license = "MIT"
12
+ authors = [{ name = "autoinference", email = "noreply@autoinference.dev" }]
13
+ keywords = ["autoinference", "inference", "ml", "ai"]
14
+ classifiers = [
15
+ "Development Status :: 1 - Planning",
16
+ "Intended Audience :: Developers",
17
+ "License :: OSI Approved :: MIT License",
18
+ "Programming Language :: Python :: 3",
19
+ "Programming Language :: Python :: 3 :: Only",
20
+ ]
21
+
22
+ [project.urls]
23
+ Homepage = "https://github.com/autoinference/autoinference"
24
+ Repository = "https://github.com/autoinference/autoinference"
25
+ Issues = "https://github.com/autoinference/autoinference/issues"
26
+
27
+ [tool.hatch.build.targets.wheel]
28
+ packages = ["src/autoinference"]
@@ -0,0 +1,3 @@
1
+ """Placeholder for the autoinference library. Work in progress."""
2
+
3
+ __version__ = "0.0.1"