hivemind-sqlite-database 0.0.1__tar.gz → 0.0.2a1__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.0
2
2
  Name: hivemind-sqlite-database
3
- Version: 0.0.1
3
+ Version: 0.0.2a1
4
4
  Summary: sqlite database plugin for hivemind-core
5
5
  Home-page: https://github.com/JarbasHiveMind/hivemind-sqlite-database
6
6
  Author: jarbasAi
@@ -1,6 +1,6 @@
1
1
  # START_VERSION_BLOCK
2
2
  VERSION_MAJOR = 0
3
3
  VERSION_MINOR = 0
4
- VERSION_BUILD = 1
5
- VERSION_ALPHA = 0
4
+ VERSION_BUILD = 2
5
+ VERSION_ALPHA = 1
6
6
  # END_VERSION_BLOCK
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.0
2
2
  Name: hivemind-sqlite-database
3
- Version: 0.0.1
3
+ Version: 0.0.2a1
4
4
  Summary: sqlite database plugin for hivemind-core
5
5
  Home-page: https://github.com/JarbasHiveMind/hivemind-sqlite-database
6
6
  Author: jarbasAi
@@ -6,4 +6,5 @@ hivemind_sqlite_database/version.py
6
6
  hivemind_sqlite_database.egg-info/PKG-INFO
7
7
  hivemind_sqlite_database.egg-info/SOURCES.txt
8
8
  hivemind_sqlite_database.egg-info/dependency_links.txt
9
+ hivemind_sqlite_database.egg-info/entry_points.txt
9
10
  hivemind_sqlite_database.egg-info/top_level.txt
@@ -0,0 +1,3 @@
1
+ [hivemind.database]
2
+ hivemind-sqlite-db-plugin=hivemind_sqlite_database:SQLiteDB
3
+
@@ -39,6 +39,7 @@ def required(requirements_file):
39
39
  if pkg.strip() and not pkg.startswith("#")]
40
40
 
41
41
 
42
+ PLUGIN_ENTRY_POINT = 'hivemind-sqlite-db-plugin=hivemind_sqlite_database:SQLiteDB'
42
43
 
43
44
  setup(
44
45
  name='hivemind-sqlite-database',
@@ -48,6 +49,7 @@ setup(
48
49
  license='Apache-2.0',
49
50
  author='jarbasAi',
50
51
  # install_requires=required("requirements.txt"),
52
+ entry_points={'hivemind.database': PLUGIN_ENTRY_POINT},
51
53
  author_email='jarbasai@mailfence.com',
52
54
  description='sqlite database plugin for hivemind-core'
53
55
  )