File tree 22 files changed +110
-22
lines changed 22 files changed +110
-22
lines changed Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_namespace_packages
2
2
3
+ description = "Arango DB component of testcontainers-python."
4
+
3
5
setup (
4
6
name = "testcontainers-arangodb" ,
5
7
version = "0.0.1rc1" ,
6
8
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" ,
8
12
url = "https://github.com/testcontainers/testcontainers-python" ,
9
13
install_requires = [
10
14
"testcontainers-core" ,
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_namespace_packages
2
2
3
+ description = "Core component of testcontainers-python."
4
+
3
5
setup (
4
6
name = "testcontainers-azurite" ,
5
7
version = "0.0.1rc1" ,
6
8
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" ,
8
12
url = "https://github.com/testcontainers/testcontainers-python" ,
9
13
install_requires = [
10
14
"testcontainers-core" ,
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_namespace_packages
2
2
3
+ description = "Clickhouse component of testcontainers-python."
4
+
3
5
setup (
4
6
name = "testcontainers-clickhouse" ,
5
7
version = "0.0.1rc1" ,
6
8
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" ,
8
12
url = "https://github.com/testcontainers/testcontainers-python" ,
9
13
install_requires = [
10
14
"testcontainers-core" ,
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_namespace_packages
2
2
3
+ description = "Docker Compose component of testcontainers-python."
4
+
3
5
setup (
4
6
name = "testcontainers-compose" ,
5
7
version = "0.0.1rc1" ,
6
8
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" ,
8
12
url = "https://github.com/testcontainers/testcontainers-python" ,
9
13
install_requires = [
10
14
"testcontainers-core" ,
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_namespace_packages
2
2
3
+ description = "Core component of testcontainers-python."
4
+
3
5
setup (
4
6
name = "testcontainers-core" ,
5
7
version = "0.0.1rc1" ,
6
8
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" ,
8
12
url = "https://github.com/testcontainers/testcontainers-python" ,
9
13
install_requires = [
10
14
"docker>=4.0.0" ,
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_namespace_packages
2
2
3
+ description = "Elasticsearch component of testcontainers-python."
4
+
3
5
setup (
4
6
name = "testcontainers-elasticsearch" ,
5
7
version = "0.0.1rc1" ,
6
8
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" ,
8
12
url = "https://github.com/testcontainers/testcontainers-python" ,
9
13
install_requires = [
10
14
"testcontainers-core" ,
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_namespace_packages
2
2
3
+ description = "Google Cloud Platform component of testcontainers-python."
4
+
3
5
setup (
4
6
name = "testcontainers-gcp" ,
5
7
version = "0.0.1rc1" ,
6
8
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" ,
8
12
url = "https://github.com/testcontainers/testcontainers-python" ,
9
13
install_requires = [
10
14
"testcontainers-core" ,
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_namespace_packages
2
2
3
+ description = "Kafka component of testcontainers-python."
4
+
3
5
setup (
4
6
name = "testcontainers-kafka" ,
5
7
version = "0.0.1rc1" ,
6
8
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" ,
8
12
url = "https://github.com/testcontainers/testcontainers-python" ,
9
13
install_requires = [
10
14
"testcontainers-core" ,
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_namespace_packages
2
2
3
+ description = "Keycloak component of testcontainers-python."
4
+
3
5
setup (
4
6
name = "testcontainers-keycloak" ,
5
7
version = "0.0.1rc1" ,
6
8
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" ,
8
12
url = "https://github.com/testcontainers/testcontainers-python" ,
9
13
install_requires = [
10
14
"testcontainers-core" ,
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_namespace_packages
2
2
3
+ description = "LocalStack component of testcontainers-python."
4
+
3
5
setup (
4
6
name = "testcontainers-localstack" ,
5
7
version = "0.0.1rc1" ,
6
8
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" ,
8
12
url = "https://github.com/testcontainers/testcontainers-python" ,
9
13
install_requires = [
10
14
"testcontainers-core" ,
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_namespace_packages
2
2
3
+ description = "MinIO component of testcontainers-python."
4
+
3
5
setup (
4
6
name = "testcontainers-minio" ,
5
7
version = "0.0.1rc1" ,
6
8
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" ,
8
12
url = "https://github.com/testcontainers/testcontainers-python" ,
9
13
install_requires = [
10
14
"testcontainers-core" ,
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_namespace_packages
2
2
3
+ description = "MongoDB component of testcontainers-python."
4
+
3
5
setup (
4
6
name = "testcontainers-mongodb" ,
5
7
version = "0.0.1rc1" ,
6
8
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" ,
8
12
url = "https://github.com/testcontainers/testcontainers-python" ,
9
13
install_requires = [
10
14
"testcontainers-core" ,
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_namespace_packages
2
2
3
+ description = "Microsoft SQL Server component of testcontainers-python."
4
+
3
5
setup (
4
6
name = "testcontainers-mssql" ,
5
7
version = "0.0.1rc1" ,
6
8
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" ,
8
12
url = "https://github.com/testcontainers/testcontainers-python" ,
9
13
install_requires = [
10
14
"testcontainers-core" ,
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_namespace_packages
2
2
3
+ description = "MySQL component of testcontainers-python."
4
+
3
5
setup (
4
6
name = "testcontainers-mysql" ,
5
7
version = "0.0.1rc1" ,
6
8
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" ,
8
12
url = "https://github.com/testcontainers/testcontainers-python" ,
9
13
install_requires = [
10
14
"testcontainers-core" ,
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_namespace_packages
2
2
3
+ description = "Neo4j component of testcontainers-python."
4
+
3
5
setup (
4
6
name = "testcontainers-neo4j" ,
5
7
version = "0.0.1rc1" ,
6
8
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" ,
8
12
url = "https://github.com/testcontainers/testcontainers-python" ,
9
13
install_requires = [
10
14
"testcontainers-core" ,
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_namespace_packages
2
2
3
+ description = "NGINX component of testcontainers-python."
4
+
3
5
setup (
4
6
name = "testcontainers-nginx" ,
5
7
version = "0.0.1rc1" ,
6
8
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" ,
8
12
url = "https://github.com/testcontainers/testcontainers-python" ,
9
13
install_requires = [
10
14
"testcontainers-core" ,
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_namespace_packages
2
2
3
+ description = "OpenSearch component of testcontainers-python."
4
+
3
5
setup (
4
6
name = "testcontainers-opensearch" ,
5
7
version = "0.0.1rc1" ,
6
8
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" ,
8
12
url = "https://github.com/testcontainers/testcontainers-python" ,
9
13
install_requires = [
10
14
"testcontainers-core" ,
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_namespace_packages
2
2
3
+ description = "Oracle component of testcontainers-python."
4
+
3
5
setup (
4
6
name = "testcontainers-oracle" ,
5
7
version = "0.0.1rc1" ,
6
8
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" ,
8
12
url = "https://github.com/testcontainers/testcontainers-python" ,
9
13
install_requires = [
10
14
"testcontainers-core" ,
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_namespace_packages
2
2
3
+ description = "PostgreSQL component of testcontainers-python."
4
+
3
5
setup (
4
6
name = "testcontainers-postgres" ,
5
7
version = "0.0.1rc1" ,
6
8
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" ,
8
12
url = "https://github.com/testcontainers/testcontainers-python" ,
9
13
install_requires = [
10
14
"testcontainers-core" ,
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_namespace_packages
2
2
3
+ description = "RabbitMQ component of testcontainers-python."
4
+
3
5
setup (
4
6
name = "testcontainers-rabbitmq" ,
5
7
version = "0.0.1rc1" ,
6
8
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" ,
8
12
url = "https://github.com/testcontainers/testcontainers-python" ,
9
13
install_requires = [
10
14
"testcontainers-core" ,
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_namespace_packages
2
2
3
+ description = "Redis component of testcontainers-python."
4
+
3
5
setup (
4
6
name = "testcontainers-redis" ,
5
7
version = "0.0.1rc1" ,
6
8
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" ,
8
12
url = "https://github.com/testcontainers/testcontainers-python" ,
9
13
install_requires = [
10
14
"testcontainers-core" ,
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_namespace_packages
2
2
3
+ description = "Selenium component of testcontainers-python."
4
+
3
5
setup (
4
6
name = "testcontainers-selenium" ,
5
7
version = "0.0.1rc1" ,
6
8
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" ,
8
12
url = "https://github.com/testcontainers/testcontainers-python" ,
9
13
install_requires = [
10
14
"testcontainers-core" ,
You can’t perform that action at this time.
0 commit comments