This repository has been archived on 2026-02-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
eventapi/setup.py
dependabot[bot] 43c96baa6d Update typing-extensions requirement in the python-packages group
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>
2025-09-08 19:14:01 +00:00

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",
],
)