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",

0 commit comments

Comments
 (0)