dynamic-tables 0.1.0__tar.gz → 0.1.1__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {dynamic_tables-0.1.0 → dynamic_tables-0.1.1}/PKG-INFO +2 -3
- {dynamic_tables-0.1.0 → dynamic_tables-0.1.1}/dynamic_tables.egg-info/PKG-INFO +2 -3
- {dynamic_tables-0.1.0 → dynamic_tables-0.1.1}/setup.py +2 -5
- {dynamic_tables-0.1.0 → dynamic_tables-0.1.1}/README.md +0 -0
- {dynamic_tables-0.1.0 → dynamic_tables-0.1.1}/dynamic_tables/__init__.py +0 -0
- {dynamic_tables-0.1.0 → dynamic_tables-0.1.1}/dynamic_tables/dynamic_tables.py +0 -0
- {dynamic_tables-0.1.0 → dynamic_tables-0.1.1}/dynamic_tables.egg-info/SOURCES.txt +0 -0
- {dynamic_tables-0.1.0 → dynamic_tables-0.1.1}/dynamic_tables.egg-info/dependency_links.txt +0 -0
- {dynamic_tables-0.1.0 → dynamic_tables-0.1.1}/dynamic_tables.egg-info/requires.txt +0 -0
- {dynamic_tables-0.1.0 → dynamic_tables-0.1.1}/dynamic_tables.egg-info/top_level.txt +0 -0
- {dynamic_tables-0.1.0 → dynamic_tables-0.1.1}/setup.cfg +0 -0
@@ -1,12 +1,11 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: dynamic_tables
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.1
|
4
4
|
Summary: A dynamic table creation and management library for PostgreSQL
|
5
|
-
Home-page: https://github.com/scottrodeo/
|
5
|
+
Home-page: https://github.com/scottrodeo/dynamic-tables-python
|
6
6
|
Author: Scott Rodeo
|
7
7
|
Author-email: signcactus@gmail.com
|
8
8
|
License: UNKNOWN
|
9
|
-
Project-URL: Author Website, https://patreon.com/scottrodeo
|
10
9
|
Description: # Dynamic Tables (Python)
|
11
10
|
A Python library for dynamically creating and managing PostgreSQL tables based on input data.
|
12
11
|
|
@@ -1,12 +1,11 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: dynamic-tables
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.1
|
4
4
|
Summary: A dynamic table creation and management library for PostgreSQL
|
5
|
-
Home-page: https://github.com/scottrodeo/
|
5
|
+
Home-page: https://github.com/scottrodeo/dynamic-tables-python
|
6
6
|
Author: Scott Rodeo
|
7
7
|
Author-email: signcactus@gmail.com
|
8
8
|
License: UNKNOWN
|
9
|
-
Project-URL: Author Website, https://patreon.com/scottrodeo
|
10
9
|
Description: # Dynamic Tables (Python)
|
11
10
|
A Python library for dynamically creating and managing PostgreSQL tables based on input data.
|
12
11
|
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
2
2
|
|
3
3
|
setup(
|
4
4
|
name="dynamic_tables",
|
5
|
-
version="0.1.
|
5
|
+
version="0.1.1",
|
6
6
|
packages=find_packages(),
|
7
7
|
install_requires=[
|
8
8
|
"psycopg2",
|
@@ -12,10 +12,7 @@ setup(
|
|
12
12
|
description="A dynamic table creation and management library for PostgreSQL",
|
13
13
|
long_description=open("README.md").read(),
|
14
14
|
long_description_content_type="text/markdown",
|
15
|
-
url="https://github.com/scottrodeo/
|
16
|
-
project_urls={
|
17
|
-
"Author Website": "https://patreon.com/scottrodeo",
|
18
|
-
},
|
15
|
+
url="https://github.com/scottrodeo/dynamic-tables-python",
|
19
16
|
classifiers=[
|
20
17
|
"Programming Language :: Python :: 3",
|
21
18
|
"License :: OSI Approved :: MIT License",
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|