notionary 0.1.1__tar.gz → 0.1.2__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: 2.4
2
2
  Name: notionary
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: A toolkit to convert between Markdown and Notion blocks
5
5
  Home-page: https://github.com/mathisarends/notionary
6
6
  Author: Mathis Arends
@@ -0,0 +1,9 @@
1
+ from .core.page.notion_page_manager import NotionPageManager
2
+ from .core.database.notion_database_manager import NotionDatabaseManager
3
+ from .core.database.notion_database_manager_factory import NotionDatabaseFactory
4
+
5
+ __all__ = [
6
+ "NotionPageManager",
7
+ "NotionDatabaseManager",
8
+ "NotionDatabaseFactory",
9
+ ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: notionary
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: A toolkit to convert between Markdown and Notion blocks
5
5
  Home-page: https://github.com/mathisarends/notionary
6
6
  Author: Mathis Arends
@@ -1,6 +1,7 @@
1
1
  LICENSE
2
2
  README.md
3
3
  setup.py
4
+ notionary/__init__.py
4
5
  notionary.egg-info/PKG-INFO
5
6
  notionary.egg-info/SOURCES.txt
6
7
  notionary.egg-info/dependency_links.txt
@@ -0,0 +1 @@
1
+ notionary
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="notionary",
5
- version="0.1.1",
5
+ version="0.1.2",
6
6
  packages=find_packages(),
7
7
  install_requires=[
8
8
  "notion-client>=2.0.0",
File without changes
File without changes
File without changes