Skip to content

Commit c04c27d

Browse files
committed
Provide explicit long_description required by python 3.10.
1 parent ec1d326 commit c04c27d

File tree

22 files changed

+110
-22
lines changed

22 files changed

+110
-22
lines changed

arangodb/setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
from setuptools import setup, find_namespace_packages
22

3+
description = "Arango DB component of testcontainers-python."
4+
35
setup(
46
name="testcontainers-arangodb",
57
version="0.0.1rc1",
68
packages=find_namespace_packages(),
7-
description="Arango DB component of testcontainers-python.",
9+
description=description,
10+
long_description=description,
11+
long_description_content_type="text/x-rst",
812
url="https://github.com/testcontainers/testcontainers-python",
913
install_requires=[
1014
"testcontainers-core",

azurite/setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
from setuptools import setup, find_namespace_packages
22

3+
description = "Core component of testcontainers-python."
4+
35
setup(
46
name="testcontainers-azurite",
57
version="0.0.1rc1",
68
packages=find_namespace_packages(),
7-
description="Core component of testcontainers-python.",
9+
description=description,
10+
long_description=description,
11+
long_description_content_type="text/x-rst",
812
url="https://github.com/testcontainers/testcontainers-python",
913
install_requires=[
1014
"testcontainers-core",

clickhouse/setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
from setuptools import setup, find_namespace_packages
22

3+
description = "Clickhouse component of testcontainers-python."
4+
35
setup(
46
name="testcontainers-clickhouse",
57
version="0.0.1rc1",
68
packages=find_namespace_packages(),
7-
description="Clickhouse component of testcontainers-python.",
9+
description=description,
10+
long_description=description,
11+
long_description_content_type="text/x-rst",
812
url="https://github.com/testcontainers/testcontainers-python",
913
install_requires=[
1014
"testcontainers-core",

compose/setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
from setuptools import setup, find_namespace_packages
22

3+
description = "Docker Compose component of testcontainers-python."
4+
35
setup(
46
name="testcontainers-compose",
57
version="0.0.1rc1",
68
packages=find_namespace_packages(),
7-
description="Docker Compose component of testcontainers-python.",
9+
description=description,
10+
long_description=description,
11+
long_description_content_type="text/x-rst",
812
url="https://github.com/testcontainers/testcontainers-python",
913
install_requires=[
1014
"testcontainers-core",

core/setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
from setuptools import setup, find_namespace_packages
22

3+
description = "Core component of testcontainers-python."
4+
35
setup(
46
name="testcontainers-core",
57
version="0.0.1rc1",
68
packages=find_namespace_packages(),
7-
description="Core component of testcontainers-python.",
9+
description=description,
10+
long_description=description,
11+
long_description_content_type="text/x-rst",
812
url="https://github.com/testcontainers/testcontainers-python",
913
install_requires=[
1014
"docker>=4.0.0",

elasticsearch/setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
from setuptools import setup, find_namespace_packages
22

3+
description = "Elasticsearch component of testcontainers-python."
4+
35
setup(
46
name="testcontainers-elasticsearch",
57
version="0.0.1rc1",
68
packages=find_namespace_packages(),
7-
description="Elasticsearch component of testcontainers-python.",
9+
description=description,
10+
long_description=description,
11+
long_description_content_type="text/x-rst",
812
url="https://github.com/testcontainers/testcontainers-python",
913
install_requires=[
1014
"testcontainers-core",

google/setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
from setuptools import setup, find_namespace_packages
22

3+
description = "Google Cloud Platform component of testcontainers-python."
4+
35
setup(
46
name="testcontainers-gcp",
57
version="0.0.1rc1",
68
packages=find_namespace_packages(),
7-
description="Google Cloud Platform component of testcontainers-python.",
9+
description=description,
10+
long_description=description,
11+
long_description_content_type="text/x-rst",
812
url="https://github.com/testcontainers/testcontainers-python",
913
install_requires=[
1014
"testcontainers-core",

kafka/setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
from setuptools import setup, find_namespace_packages
22

3+
description = "Kafka component of testcontainers-python."
4+
35
setup(
46
name="testcontainers-kafka",
57
version="0.0.1rc1",
68
packages=find_namespace_packages(),
7-
description="Kafka component of testcontainers-python.",
9+
description=description,
10+
long_description=description,
11+
long_description_content_type="text/x-rst",
812
url="https://github.com/testcontainers/testcontainers-python",
913
install_requires=[
1014
"testcontainers-core",

keycloak/setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
from setuptools import setup, find_namespace_packages
22

3+
description = "Keycloak component of testcontainers-python."
4+
35
setup(
46
name="testcontainers-keycloak",
57
version="0.0.1rc1",
68
packages=find_namespace_packages(),
7-
description="Keycloak component of testcontainers-python.",
9+
description=description,
10+
long_description=description,
11+
long_description_content_type="text/x-rst",
812
url="https://github.com/testcontainers/testcontainers-python",
913
install_requires=[
1014
"testcontainers-core",

localstack/setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
from setuptools import setup, find_namespace_packages
22

3+
description = "LocalStack component of testcontainers-python."
4+
35
setup(
46
name="testcontainers-localstack",
57
version="0.0.1rc1",
68
packages=find_namespace_packages(),
7-
description="LocalStack component of testcontainers-python.",
9+
description=description,
10+
long_description=description,
11+
long_description_content_type="text/x-rst",
812
url="https://github.com/testcontainers/testcontainers-python",
913
install_requires=[
1014
"testcontainers-core",

minio/setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
from setuptools import setup, find_namespace_packages
22

3+
description = "MinIO component of testcontainers-python."
4+
35
setup(
46
name="testcontainers-minio",
57
version="0.0.1rc1",
68
packages=find_namespace_packages(),
7-
description="MinIO component of testcontainers-python.",
9+
description=description,
10+
long_description=description,
11+
long_description_content_type="text/x-rst",
812
url="https://github.com/testcontainers/testcontainers-python",
913
install_requires=[
1014
"testcontainers-core",

mongodb/setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
from setuptools import setup, find_namespace_packages
22

3+
description = "MongoDB component of testcontainers-python."
4+
35
setup(
46
name="testcontainers-mongodb",
57
version="0.0.1rc1",
68
packages=find_namespace_packages(),
7-
description="MongoDB component of testcontainers-python.",
9+
description=description,
10+
long_description=description,
11+
long_description_content_type="text/x-rst",
812
url="https://github.com/testcontainers/testcontainers-python",
913
install_requires=[
1014
"testcontainers-core",

mssql/setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
from setuptools import setup, find_namespace_packages
22

3+
description = "Microsoft SQL Server component of testcontainers-python."
4+
35
setup(
46
name="testcontainers-mssql",
57
version="0.0.1rc1",
68
packages=find_namespace_packages(),
7-
description="Microsoft SQL Server component of testcontainers-python.",
9+
description=description,
10+
long_description=description,
11+
long_description_content_type="text/x-rst",
812
url="https://github.com/testcontainers/testcontainers-python",
913
install_requires=[
1014
"testcontainers-core",

mysql/setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
from setuptools import setup, find_namespace_packages
22

3+
description = "MySQL component of testcontainers-python."
4+
35
setup(
46
name="testcontainers-mysql",
57
version="0.0.1rc1",
68
packages=find_namespace_packages(),
7-
description="MySQL component of testcontainers-python.",
9+
description=description,
10+
long_description=description,
11+
long_description_content_type="text/x-rst",
812
url="https://github.com/testcontainers/testcontainers-python",
913
install_requires=[
1014
"testcontainers-core",

neo4j/setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
from setuptools import setup, find_namespace_packages
22

3+
description = "Neo4j component of testcontainers-python."
4+
35
setup(
46
name="testcontainers-neo4j",
57
version="0.0.1rc1",
68
packages=find_namespace_packages(),
7-
description="Neo4j component of testcontainers-python.",
9+
description=description,
10+
long_description=description,
11+
long_description_content_type="text/x-rst",
812
url="https://github.com/testcontainers/testcontainers-python",
913
install_requires=[
1014
"testcontainers-core",

nginx/setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
from setuptools import setup, find_namespace_packages
22

3+
description = "NGINX component of testcontainers-python."
4+
35
setup(
46
name="testcontainers-nginx",
57
version="0.0.1rc1",
68
packages=find_namespace_packages(),
7-
description="NGINX component of testcontainers-python.",
9+
description=description,
10+
long_description=description,
11+
long_description_content_type="text/x-rst",
812
url="https://github.com/testcontainers/testcontainers-python",
913
install_requires=[
1014
"testcontainers-core",

opensearch/setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
from setuptools import setup, find_namespace_packages
22

3+
description = "OpenSearch component of testcontainers-python."
4+
35
setup(
46
name="testcontainers-opensearch",
57
version="0.0.1rc1",
68
packages=find_namespace_packages(),
7-
description="OpenSearch component of testcontainers-python.",
9+
description=description,
10+
long_description=description,
11+
long_description_content_type="text/x-rst",
812
url="https://github.com/testcontainers/testcontainers-python",
913
install_requires=[
1014
"testcontainers-core",

oracle/setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
from setuptools import setup, find_namespace_packages
22

3+
description = "Oracle component of testcontainers-python."
4+
35
setup(
46
name="testcontainers-oracle",
57
version="0.0.1rc1",
68
packages=find_namespace_packages(),
7-
description="Oracle component of testcontainers-python.",
9+
description=description,
10+
long_description=description,
11+
long_description_content_type="text/x-rst",
812
url="https://github.com/testcontainers/testcontainers-python",
913
install_requires=[
1014
"testcontainers-core",

postgres/setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
from setuptools import setup, find_namespace_packages
22

3+
description = "PostgreSQL component of testcontainers-python."
4+
35
setup(
46
name="testcontainers-postgres",
57
version="0.0.1rc1",
68
packages=find_namespace_packages(),
7-
description="PostgreSQL component of testcontainers-python.",
9+
description=description,
10+
long_description=description,
11+
long_description_content_type="text/x-rst",
812
url="https://github.com/testcontainers/testcontainers-python",
913
install_requires=[
1014
"testcontainers-core",

rabbitmq/setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
from setuptools import setup, find_namespace_packages
22

3+
description = "RabbitMQ component of testcontainers-python."
4+
35
setup(
46
name="testcontainers-rabbitmq",
57
version="0.0.1rc1",
68
packages=find_namespace_packages(),
7-
description="RabbitMQ component of testcontainers-python.",
9+
description=description,
10+
long_description=description,
11+
long_description_content_type="text/x-rst",
812
url="https://github.com/testcontainers/testcontainers-python",
913
install_requires=[
1014
"testcontainers-core",

redis/setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
from setuptools import setup, find_namespace_packages
22

3+
description = "Redis component of testcontainers-python."
4+
35
setup(
46
name="testcontainers-redis",
57
version="0.0.1rc1",
68
packages=find_namespace_packages(),
7-
description="Redis component of testcontainers-python.",
9+
description=description,
10+
long_description=description,
11+
long_description_content_type="text/x-rst",
812
url="https://github.com/testcontainers/testcontainers-python",
913
install_requires=[
1014
"testcontainers-core",

selenium/setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
from setuptools import setup, find_namespace_packages
22

3+
description = "Selenium component of testcontainers-python."
4+
35
setup(
46
name="testcontainers-selenium",
57
version="0.0.1rc1",
68
packages=find_namespace_packages(),
7-
description="Selenium component of testcontainers-python.",
9+
description=description,
10+
long_description=description,
11+
long_description_content_type="text/x-rst",
812
url="https://github.com/testcontainers/testcontainers-python",
913
install_requires=[
1014
"testcontainers-core",

0 commit comments

Comments
 (0)