Updates the requirements on [typing-extensions](https://github.com/python/typing_extensions) to permit the latest version. Updates `typing-extensions` to 4.15.0 - [Release notes](https://github.com/python/typing_extensions/releases) - [Changelog](https://github.com/python/typing_extensions/blob/main/CHANGELOG.md) - [Commits](https://github.com/python/typing_extensions/compare/4.12.2...4.15.0) --- updated-dependencies: - dependency-name: typing-extensions dependency-version: 4.15.0 dependency-type: direct:production dependency-group: python-packages ... Signed-off-by: dependabot[bot] <support@github.com>
44 lines
1.2 KiB
Python
44 lines
1.2 KiB
Python
from pathlib import Path
|
|
|
|
from setuptools import find_packages, setup
|
|
|
|
cwd = Path(__file__).parent
|
|
long_description = (cwd / "README.md").read_text()
|
|
|
|
setup(
|
|
name="eventapi",
|
|
version="1.1.2",
|
|
author="yoggys",
|
|
author_email="contact@yoggies.dev",
|
|
description="Wrapper for 7TV EventAPI.",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url="https://github.com/yoggys/eventapi",
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
"websockets >= 12,< 16",
|
|
"typing_extensions >= 4.12.2,< 4.16.0",
|
|
],
|
|
classifiers=[
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
],
|
|
keywords=[
|
|
"python",
|
|
"7tv",
|
|
"eventapi",
|
|
"7tvapi",
|
|
"7tveventapi",
|
|
"async",
|
|
"asyncio",
|
|
"wrapper",
|
|
],
|
|
)
|