in mysql-connector-python/setup.py [0:0]
def main() -> None:
setup(
name="mysql-connector-python",
version=VERSION_TEXT,
description=(
"A self-contained Python driver for communicating with MySQL "
"servers, using an API that is compliant with the Python "
"Database API Specification v2.0 (PEP 249)."
),
long_description=get_long_description(),
long_description_content_type="text/x-rst",
author="Oracle and/or its affiliates",
author_email="",
license="GNU GPLv2 (with FOSS License Exception)",
keywords=[
"mysql",
"database",
"db",
"connector",
"driver",
],
project_urls={
"Homepage": "https://dev.mysql.com/doc/connector-python/en/",
"Documentation": "https://dev.mysql.com/doc/connector-python/en/",
"Downloads": "https://dev.mysql.com/downloads/connector/python/",
"Release Notes": "https://dev.mysql.com/doc/relnotes/connector-python/en/",
"Source Code": GITHUB_URL,
"Bug System": "https://bugs.mysql.com/",
"Slack": "https://mysqlcommunity.slack.com/messages/connectors",
"Forums": "https://forums.mysql.com/list.php?50",
"Blog": "https://blogs.oracle.com/mysql/",
},
package_dir={"": "lib"},
packages=find_packages(where="lib"),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"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",
"Topic :: Database",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
],
ext_modules=EXTENSIONS,
cmdclass=COMMAND_CLASSES,
python_requires=">=3.9",
extras_require={
"dns-srv": ["dnspython==2.6.1"],
"gssapi": ["gssapi==1.8.3"],
"fido2": ["fido2==1.1.2"],
"telemetry": [
"opentelemetry-api==1.18.0",
"opentelemetry-sdk==1.18.0",
"opentelemetry-exporter-otlp-proto-http==1.18.0",
],
},
)