mc-postgres-db 0.1.0__tar.gz → 1.0.6__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,10 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mc-postgres-db
3
- Version: 0.1.0
3
+ Version: 1.0.6
4
4
  Summary: Add your description here
5
5
  Requires-Python: >=3.12
6
6
  Description-Content-Type: text/markdown
7
7
  Requires-Dist: alembic>=1.16.2
8
- Requires-Dist: psycopg2>=2.9.10
8
+ Requires-Dist: psycopg2-binary>=2.9.10
9
9
  Requires-Dist: ruff>=0.12.0
10
10
  Requires-Dist: sqlalchemy>=2.0.41
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mc-postgres-db
3
- Version: 0.1.0
3
+ Version: 1.0.6
4
4
  Summary: Add your description here
5
5
  Requires-Python: >=3.12
6
6
  Description-Content-Type: text/markdown
7
7
  Requires-Dist: alembic>=1.16.2
8
- Requires-Dist: psycopg2>=2.9.10
8
+ Requires-Dist: psycopg2-binary>=2.9.10
9
9
  Requires-Dist: ruff>=0.12.0
10
10
  Requires-Dist: sqlalchemy>=2.0.41
@@ -7,4 +7,5 @@ mc_postgres_db.egg-info/PKG-INFO
7
7
  mc_postgres_db.egg-info/SOURCES.txt
8
8
  mc_postgres_db.egg-info/dependency_links.txt
9
9
  mc_postgres_db.egg-info/requires.txt
10
- mc_postgres_db.egg-info/top_level.txt
10
+ mc_postgres_db.egg-info/top_level.txt
11
+ tests/test_placeholder.py
@@ -1,4 +1,4 @@
1
1
  alembic>=1.16.2
2
- psycopg2>=2.9.10
2
+ psycopg2-binary>=2.9.10
3
3
  ruff>=0.12.0
4
4
  sqlalchemy>=2.0.41
@@ -1,12 +1,12 @@
1
1
  [project]
2
2
  name = "mc-postgres-db"
3
- version = "0.1.0"
3
+ version = "1.0.6"
4
4
  description = "Add your description here"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.12"
7
7
  dependencies = [
8
8
  "alembic>=1.16.2",
9
- "psycopg2>=2.9.10",
9
+ "psycopg2-binary>=2.9.10",
10
10
  "ruff>=0.12.0",
11
11
  "sqlalchemy>=2.0.41",
12
12
  ]
@@ -15,3 +15,6 @@ dependencies = [
15
15
  dev = [
16
16
  "python-dotenv>=1.1.0",
17
17
  ]
18
+ test = [
19
+ "pytest>=8.4.1",
20
+ ]
@@ -0,0 +1,2 @@
1
+ def test_placeholder():
2
+ assert True # This is a placeholder test
File without changes
File without changes