From 0069f41746c949139b75e33bc531a57db13f3e0a Mon Sep 17 00:00:00 2001 From: Dmitry Maslennikov Date: Mon, 11 Dec 2023 15:15:21 +0400 Subject: [PATCH] updated setup files --- setup.cfg | 12 ++++++++++++ setup.py | 10 ---------- 2 files changed, 12 insertions(+), 10 deletions(-) create mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..17c4975 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,12 @@ +[metadata] +name="testcontainers-iris", +version="1.1.0", +long_description_content_type="text/markdown", +url="https://github.com/caretdev/testcontainers-iris-python", +install_requires=[ + "testcontainers-core", + "sqlalchemy", + "sqlalchemy-iris", +], +python_requires=">=3.7", + diff --git a/setup.py b/setup.py index acf0c3e..776e163 100644 --- a/setup.py +++ b/setup.py @@ -3,17 +3,7 @@ description = "InterSystems IRIS component of testcontainers-python." setup( - name="testcontainers-iris", - version="1.1.0", packages=find_namespace_packages(), description=description, long_description=open('README.md').read(), - long_description_content_type="text/markdown", - url="https://github.com/caretdev/testcontainers-iris-python", - install_requires=[ - "testcontainers-core", - "sqlalchemy", - "sqlalchemy-iris", - ], - python_requires=">=3.7", )