forked from testcontainers/testcontainers-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (17 loc) · 628 Bytes
/
Copy pathsetup.py
File metadata and controls
19 lines (17 loc) · 628 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup, find_namespace_packages
description = "PostgreSQL component of testcontainers-python."
setup(
name="testcontainers-postgres",
version="0.0.1rc1",
packages=find_namespace_packages(),
description=description,
long_description=description,
long_description_content_type="text/x-rst",
url="https://github.com/testcontainers/testcontainers-python",
install_requires=[
"testcontainers-core @ git+https://github.com/Shuttleu/testcontainers-python.git@main#subdirectory=core",
"sqlalchemy",
"psycopg2-binary",
],
python_requires=">=3.7",
)