arcadedb-embedded 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.
@@ -0,0 +1,36 @@
1
+ Metadata-Version: 2.4
2
+ Name: arcadedb-embedded
3
+ Version: 0.0.0
4
+ Summary: Placeholder release - real package coming soon
5
+ Author-email: Arcade Data Ltd <info@arcadedata.com>
6
+ License: Apache-2.0
7
+ Project-URL: Homepage, https://arcadedb.com
8
+ Project-URL: Documentation, https://docs.arcadedb.com
9
+ Project-URL: Repository, https://github.com/ArcadeData/arcadedb
10
+ Keywords: database,graph,document,multi-model,nosql,arcadedb,embedded
11
+ Classifier: Development Status :: 1 - Planning
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: Apache Software License
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.8
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Topic :: Database
21
+ Requires-Python: >=3.8
22
+ Description-Content-Type: text/markdown
23
+
24
+ # ArcadeDB Embedded (Placeholder)
25
+
26
+ This is a placeholder release (version 0.0.0) to reserve the package name on PyPI.
27
+
28
+ The real `arcadedb-embedded` package with full functionality is coming soon and will include:
29
+ - Complete ArcadeDB graph/document database embedded in Python
30
+ - Gremlin and GraphQL support
31
+ - High-performance Java integration via JPype1
32
+
33
+ Please check back soon or visit:
34
+ - Homepage: https://arcadedb.com
35
+ - Documentation: https://docs.arcadedb.com
36
+ - Repository: https://github.com/ArcadeData/arcadedb
@@ -0,0 +1,13 @@
1
+ # ArcadeDB Embedded (Placeholder)
2
+
3
+ This is a placeholder release (version 0.0.0) to reserve the package name on PyPI.
4
+
5
+ The real `arcadedb-embedded` package with full functionality is coming soon and will include:
6
+ - Complete ArcadeDB graph/document database embedded in Python
7
+ - Gremlin and GraphQL support
8
+ - High-performance Java integration via JPype1
9
+
10
+ Please check back soon or visit:
11
+ - Homepage: https://arcadedb.com
12
+ - Documentation: https://docs.arcadedb.com
13
+ - Repository: https://github.com/ArcadeData/arcadedb
@@ -0,0 +1,7 @@
1
+ """ArcadeDB Embedded - Placeholder Release
2
+
3
+ This is a placeholder release to reserve the package name on PyPI.
4
+ The real package with full functionality is coming soon.
5
+ """
6
+
7
+ __version__ = "0.0.0"
@@ -0,0 +1,36 @@
1
+ Metadata-Version: 2.4
2
+ Name: arcadedb-embedded
3
+ Version: 0.0.0
4
+ Summary: Placeholder release - real package coming soon
5
+ Author-email: Arcade Data Ltd <info@arcadedata.com>
6
+ License: Apache-2.0
7
+ Project-URL: Homepage, https://arcadedb.com
8
+ Project-URL: Documentation, https://docs.arcadedb.com
9
+ Project-URL: Repository, https://github.com/ArcadeData/arcadedb
10
+ Keywords: database,graph,document,multi-model,nosql,arcadedb,embedded
11
+ Classifier: Development Status :: 1 - Planning
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: Apache Software License
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.8
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Topic :: Database
21
+ Requires-Python: >=3.8
22
+ Description-Content-Type: text/markdown
23
+
24
+ # ArcadeDB Embedded (Placeholder)
25
+
26
+ This is a placeholder release (version 0.0.0) to reserve the package name on PyPI.
27
+
28
+ The real `arcadedb-embedded` package with full functionality is coming soon and will include:
29
+ - Complete ArcadeDB graph/document database embedded in Python
30
+ - Gremlin and GraphQL support
31
+ - High-performance Java integration via JPype1
32
+
33
+ Please check back soon or visit:
34
+ - Homepage: https://arcadedb.com
35
+ - Documentation: https://docs.arcadedb.com
36
+ - Repository: https://github.com/ArcadeData/arcadedb
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ arcadedb_embedded/__init__.py
4
+ arcadedb_embedded.egg-info/PKG-INFO
5
+ arcadedb_embedded.egg-info/SOURCES.txt
6
+ arcadedb_embedded.egg-info/dependency_links.txt
7
+ arcadedb_embedded.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ arcadedb_embedded
@@ -0,0 +1,38 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "arcadedb-embedded"
7
+ version = "0.0.0"
8
+ description = "Placeholder release - real package coming soon"
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ license = {text = "Apache-2.0"}
12
+ authors = [
13
+ {name = "Arcade Data Ltd", email = "info@arcadedata.com"}
14
+ ]
15
+ keywords = ["database", "graph", "document", "multi-model", "nosql", "arcadedb", "embedded"]
16
+ classifiers = [
17
+ "Development Status :: 1 - Planning",
18
+ "Intended Audience :: Developers",
19
+ "License :: OSI Approved :: Apache Software License",
20
+ "Programming Language :: Python :: 3",
21
+ "Programming Language :: Python :: 3.8",
22
+ "Programming Language :: Python :: 3.9",
23
+ "Programming Language :: Python :: 3.10",
24
+ "Programming Language :: Python :: 3.11",
25
+ "Programming Language :: Python :: 3.12",
26
+ "Topic :: Database",
27
+ ]
28
+
29
+ [project.urls]
30
+ Homepage = "https://arcadedb.com"
31
+ Documentation = "https://docs.arcadedb.com"
32
+ Repository = "https://github.com/ArcadeData/arcadedb"
33
+
34
+ [tool.setuptools]
35
+ packages = ["arcadedb_embedded"]
36
+
37
+ [tool.setuptools.package-data]
38
+ arcadedb_embedded = ["*.txt"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+