"""owslogger setup.""" from setuptools import find_packages, setup from owslogger import __version__ setup( name="owslogger", version=__version__, url="https://github.com/theorchard/python-owslogger/", author="The Orchard", author_email="webdev@theorchard.com", description="Logging library.", # Only include the actual library packages, exclude any top-level test packages packages=find_packages(include=["owslogger", "owslogger.*"]), include_package_data=True, install_requires=[ "python-json-logger>=3.3.0", "ddtrace>=2.3", ], extras_require={ "asgi": [ "starlette>=0.33.0", ], "http": [ "requests>=2.32.4", # For making HTTP requests "requests-futures>=1.0", # For asynchronous HTTP requests ], }, zip_safe=False, classifiers=[ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", ], )