hockey-blast-common-lib 0.1.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,12 @@
1
+ Metadata-Version: 2.1
2
+ Name: hockey-blast-common-lib
3
+ Version: 0.1.0
4
+ Summary: Common library for shared functionality and DB models
5
+ Author: Pavel Kletskov
6
+ Author-email: kletskov@gmail.com
7
+ Requires-Python: >=3.7
8
+ Requires-Dist: setuptools
9
+ Requires-Dist: Flask-SQLAlchemy
10
+ Requires-Dist: SQLAlchemy
11
+ Requires-Dist: requests
12
+ Requires-Dist: psycopg2
@@ -0,0 +1 @@
1
+ Library for DB models and some common utils to use hockey-blast frontend and backend
@@ -0,0 +1,12 @@
1
+ Metadata-Version: 2.1
2
+ Name: hockey-blast-common-lib
3
+ Version: 0.1.0
4
+ Summary: Common library for shared functionality and DB models
5
+ Author: Pavel Kletskov
6
+ Author-email: kletskov@gmail.com
7
+ Requires-Python: >=3.7
8
+ Requires-Dist: setuptools
9
+ Requires-Dist: Flask-SQLAlchemy
10
+ Requires-Dist: SQLAlchemy
11
+ Requires-Dist: requests
12
+ Requires-Dist: psycopg2
@@ -0,0 +1,7 @@
1
+ README.md
2
+ setup.py
3
+ hockey_blast_common_lib.egg-info/PKG-INFO
4
+ hockey_blast_common_lib.egg-info/SOURCES.txt
5
+ hockey_blast_common_lib.egg-info/dependency_links.txt
6
+ hockey_blast_common_lib.egg-info/requires.txt
7
+ hockey_blast_common_lib.egg-info/top_level.txt
@@ -0,0 +1,5 @@
1
+ setuptools
2
+ Flask-SQLAlchemy
3
+ SQLAlchemy
4
+ requests
5
+ psycopg2
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,19 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name='hockey-blast-common-lib', # The name of your package
5
+ version='0.1.0', # Initial version
6
+ description='Common library for shared functionality and DB models',
7
+ author='Pavel Kletskov',
8
+ author_email='kletskov@gmail.com',
9
+ packages=find_packages(), # Automatically find all packages
10
+ install_requires=[
11
+ "setuptools", # For package management
12
+ "Flask-SQLAlchemy", # For Flask database interactions
13
+ "SQLAlchemy", # For database interactions
14
+ "requests", # For HTTP requests
15
+ "psycopg2", # For PostgreSQL database connections
16
+ ],
17
+ python_requires='>=3.7', # Specify the Python version compatibility
18
+ )
19
+