in mysqlx-connector-python/setup.py [0:0]
def main() -> None:
setup(
name="mysqlx-connector-python",
version=VERSION_TEXT,
description=(
"A Python driver which implements the X DevAPI, an Application "
"Programming Interface for working with the MySQL Document Store."
),
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",
"xdevapi",
"nosql",
"docstore",
],
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",
install_requires=["protobuf==4.25.3"],
extras_require={
"dns-srv": ["dnspython==2.6.1"],
"compression": ["lz4>=2.1.6,<=4.3.2", "zstandard==0.23.0"],
},
)