flexviz 0.0.1a1__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.
- flexviz-0.0.1a1/.gitignore +6 -0
- flexviz-0.0.1a1/PKG-INFO +29 -0
- flexviz-0.0.1a1/README.md +16 -0
- flexviz-0.0.1a1/pyproject.toml +23 -0
- flexviz-0.0.1a1/src/flexviz/__init__.py +8 -0
flexviz-0.0.1a1/PKG-INFO
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: flexviz
|
|
3
|
+
Version: 0.0.1a1
|
|
4
|
+
Summary: Placeholder package for FlexViz. See https://flexviz.tech.
|
|
5
|
+
Project-URL: Homepage, https://flexviz.tech
|
|
6
|
+
Project-URL: Documentation, https://flexviz.tech
|
|
7
|
+
Keywords: engine,visualization
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
11
|
+
Requires-Python: >=3.10
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# flexviz
|
|
15
|
+
|
|
16
|
+
This is a placeholder package for the FlexViz project.
|
|
17
|
+
|
|
18
|
+
The project website is:
|
|
19
|
+
|
|
20
|
+
https://flexviz.tech
|
|
21
|
+
|
|
22
|
+
This package intentionally contains no public functionality. It exists to reserve
|
|
23
|
+
the `flexviz` package name while the public Python package is prepared.
|
|
24
|
+
|
|
25
|
+
## References
|
|
26
|
+
|
|
27
|
+
- Website: https://flexviz.tech
|
|
28
|
+
- Project: FlexViz
|
|
29
|
+
- Reserved package name: `flexviz`
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# flexviz
|
|
2
|
+
|
|
3
|
+
This is a placeholder package for the FlexViz project.
|
|
4
|
+
|
|
5
|
+
The project website is:
|
|
6
|
+
|
|
7
|
+
https://flexviz.tech
|
|
8
|
+
|
|
9
|
+
This package intentionally contains no public functionality. It exists to reserve
|
|
10
|
+
the `flexviz` package name while the public Python package is prepared.
|
|
11
|
+
|
|
12
|
+
## References
|
|
13
|
+
|
|
14
|
+
- Website: https://flexviz.tech
|
|
15
|
+
- Project: FlexViz
|
|
16
|
+
- Reserved package name: `flexviz`
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling>=1.27"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "flexviz"
|
|
7
|
+
version = "0.0.1a1"
|
|
8
|
+
description = "Placeholder package for FlexViz. See https://flexviz.tech."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
keywords = ["visualization", "engine"]
|
|
12
|
+
classifiers = [
|
|
13
|
+
"Development Status :: 1 - Planning",
|
|
14
|
+
"Programming Language :: Python :: 3",
|
|
15
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
[project.urls]
|
|
19
|
+
Homepage = "https://flexviz.tech"
|
|
20
|
+
Documentation = "https://flexviz.tech"
|
|
21
|
+
|
|
22
|
+
[tool.hatch.build.targets.wheel]
|
|
23
|
+
packages = ["src/flexviz"]
|