fluid-reality 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.
- fluid_reality-0.0.1/PKG-INFO +21 -0
- fluid_reality-0.0.1/README.md +5 -0
- fluid_reality-0.0.1/pyproject.toml +25 -0
- fluid_reality-0.0.1/setup.cfg +4 -0
- fluid_reality-0.0.1/src/fluid_reality/__init__.py +8 -0
- fluid_reality-0.0.1/src/fluid_reality.egg-info/PKG-INFO +21 -0
- fluid_reality-0.0.1/src/fluid_reality.egg-info/SOURCES.txt +7 -0
- fluid_reality-0.0.1/src/fluid_reality.egg-info/dependency_links.txt +1 -0
- fluid_reality-0.0.1/src/fluid_reality.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: fluid-reality
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Placeholder package for Fluid Reality.
|
|
5
|
+
Author: Fluid Reality
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://pypi.org/project/fluid-reality/
|
|
8
|
+
Keywords: fluid-reality,placeholder
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
13
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
14
|
+
Requires-Python: >=3.9
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# fluid-reality
|
|
18
|
+
|
|
19
|
+
This package is a placeholder for the Fluid Reality Python library.
|
|
20
|
+
|
|
21
|
+
The real implementation will be uploaded soon.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "fluid-reality"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Placeholder package for Fluid Reality."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = "MIT"
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "Fluid Reality" }
|
|
14
|
+
]
|
|
15
|
+
keywords = ["fluid-reality", "placeholder"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 1 - Planning",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
"Programming Language :: Python :: 3",
|
|
20
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
21
|
+
"Topic :: Software Development :: Libraries"
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
[project.urls]
|
|
25
|
+
Homepage = "https://pypi.org/project/fluid-reality/"
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: fluid-reality
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Placeholder package for Fluid Reality.
|
|
5
|
+
Author: Fluid Reality
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://pypi.org/project/fluid-reality/
|
|
8
|
+
Keywords: fluid-reality,placeholder
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
13
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
14
|
+
Requires-Python: >=3.9
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# fluid-reality
|
|
18
|
+
|
|
19
|
+
This package is a placeholder for the Fluid Reality Python library.
|
|
20
|
+
|
|
21
|
+
The real implementation will be uploaded soon.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
fluid_reality
|