From 10a1d6dc2e496516edd63d70acda9d59e52278ef Mon Sep 17 00:00:00 2001 From: EvieePy Date: Fri, 26 Jan 2024 08:51:50 +1000 Subject: [PATCH] Remove types package and format pyproject.toml --- pyproject.toml | 44 +++++++++++++++++--------------------------- 1 file changed, 17 insertions(+), 27 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index efdef4a2..64c22d6b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,48 +8,38 @@ starting_version = "3.0.0.dev0" [project] name = "twitchio" -authors = [ - { name="PythonistaGuild" }, -] +authors = [{ name = "PythonistaGuild" }] dynamic = ["dependencies", "version"] description = "A fully asynchronous and modern Python wrapper around the Twitch API." readme = "README.md" requires-python = ">=3.10" classifiers = [ - "License :: OSI Approved :: MIT License", - "Intended Audience :: Developers", - "Natural Language :: English", - "Operating System :: OS Independent", - "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11", - "Programming Language :: Python :: 3.12", - "Topic :: Internet", - "Topic :: Software Development :: Libraries", - "Topic :: Software Development :: Libraries :: Python Modules", - "Topic :: Utilities", + "License :: OSI Approved :: MIT License", + "Intended Audience :: Developers", + "Natural Language :: English", + "Operating System :: OS Independent", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Topic :: Internet", + "Topic :: Software Development :: Libraries", + "Topic :: Software Development :: Libraries :: Python Modules", + "Topic :: Utilities", ] [project.urls] "Homepage" = "https://github.com/PythonistaGuild/TwitchIO" [tool.setuptools] -packages = ["twitchio", "twitchio.types"] +packages = ["twitchio"] [tool.setuptools.dynamic] -dependencies = {file = ["requirements.txt"]} +dependencies = { file = ["requirements.txt"] } [project.optional-dependencies] -docs = [ - "mkdocs-material", - "mkdocstrings-python", - "mkdocstrings", -] +docs = ["mkdocs-material", "mkdocstrings-python", "mkdocstrings"] -dev = [ - "ruff", - "pyright", - "isort", -] +dev = ["ruff", "pyright", "isort"] [tool.ruff] line-length = 120 @@ -108,4 +98,4 @@ exclude = ["venv"] useLibraryCodeForTypes = true typeCheckingMode = "strict" reportImportCycles = false -reportPrivateUsage = false \ No newline at end of file +reportPrivateUsage = false