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