diff --git a/setup.py b/setup.py index 2bafb1cdd4efee81ea8feda6fa57e0588158a6cd..24c91269c1f7ac3f15e183880212c68dcfb3bcf5 100644 --- a/setup.py +++ b/setup.py @@ -90,6 +90,11 @@ setup( "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", ], # This field adds keywords for your project which will appear on the # project page. What does your project relate to? @@ -105,9 +110,7 @@ setup( # # py_modules=["my_module"], # - packages=find_packages( - "python", exclude=["*.tests"] if version_info < (3, 0) else [] - ), + packages=find_packages("python", exclude=["*.tests"]), package_dir={"": "python"}, package_data={ "LbPeriodicTools": ["TestSchedule.xsd"], @@ -124,6 +127,7 @@ setup( "LbCommon>=0.0.7", "LbDevTools", "lbinstall", + "lbmessaging", "python-gitlab" + ("<2" if version_info < (3, 0) else ""), "pika==1.1.0", "CouchDB",