entity-type-local 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.
@@ -0,0 +1,13 @@
1
+ Metadata-Version: 2.1
2
+ Name: entity-type-local
3
+ Version: 0.0.1
4
+ Summary: PyPI Package for Circles Local importer Python
5
+ Home-page: https://github.com/javatechy/dokr
6
+ Author: Circles
7
+ Author-email: info@circles.life
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: Other/Proprietary License
10
+ Classifier: Operating System :: OS Independent
11
+ Description-Content-Type: text/markdown
12
+
13
+ This is a package for sharing common importer function used in different repositories
@@ -0,0 +1,11 @@
1
+ # python-package-backend-template
2
+ To create local package and remote package layers (not to create GraphQL and REST-API layers)
3
+
4
+ #database scripts
5
+ Please place <table-name>.py in /db
6
+ No need for seperate file for _ml table
7
+
8
+ <table-name]_insert.py to create records
9
+
10
+ Update the setup.py (i.e.name)
11
+
@@ -0,0 +1,13 @@
1
+ Metadata-Version: 2.1
2
+ Name: entity-type-local
3
+ Version: 0.0.1
4
+ Summary: PyPI Package for Circles Local importer Python
5
+ Home-page: https://github.com/javatechy/dokr
6
+ Author: Circles
7
+ Author-email: info@circles.life
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: Other/Proprietary License
10
+ Classifier: Operating System :: OS Independent
11
+ Description-Content-Type: text/markdown
12
+
13
+ This is a package for sharing common importer function used in different repositories
@@ -0,0 +1,6 @@
1
+ README.md
2
+ setup.py
3
+ entity_type_local.egg-info/PKG-INFO
4
+ entity_type_local.egg-info/SOURCES.txt
5
+ entity_type_local.egg-info/dependency_links.txt
6
+ entity_type_local.egg-info/top_level.txt
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,20 @@
1
+ import setuptools
2
+ # used by python -m build
3
+ # python -m build needs pyproject.toml or setup.py
4
+ setuptools.setup(
5
+ # TODO: Please update the name
6
+ name='entity-type-local',
7
+ version='0.0.1',
8
+ author="Circles",
9
+ author_email="info@circles.life",
10
+ description="PyPI Package for Circles Local importer Python",
11
+ long_description="This is a package for sharing common importer function used in different repositories",
12
+ long_description_content_type="text/markdown",
13
+ url="https://github.com/javatechy/dokr",
14
+ packages=setuptools.find_packages(),
15
+ classifiers=[
16
+ "Programming Language :: Python :: 3",
17
+ "License :: Other/Proprietary License",
18
+ "Operating System :: OS Independent",
19
+ ],
20
+ )