forked from Pycord-Development/pycord
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Migrate isort to pyproject.toml * Migrate mypy to pyproject.toml * Migrate pylint to pyproject.toml * Migrate pytest to pyproject.toml * Add removals to MANIFEST This is needed because the setuptools_scm automatically adds all files tracked by git * Remove logic from setup.py This file remains in order to support older build environments, but only needs a single setup() call with no parameters * Add project metadata to pyproject.toml * Update runtime version discovery This now supports the new versioning system with setuptools_scm * Update deprecated info * Add future import and license * Remove debug lines * Use star import * Remove version variable * Fix docs * Relative import to prevent circular import * Install package with docs * Fix circular import * Fix regex bug * Short commit hash is 4-40 chars
- Loading branch information
Showing
11 changed files
with
259 additions
and
177 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
""" | ||
The MIT License (MIT) | ||
Copyright (c) 2015-2021 Rapptz | ||
Copyright (c) 2021-present Pycord Development | ||
Permission is hereby granted, free of charge, to any person obtaining a | ||
copy of this software and associated documentation files (the "Software"), | ||
to deal in the Software without restriction, including without limitation | ||
the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
and/or sell copies of the Software, and to permit persons to whom the | ||
Software is furnished to do so, subject to the following conditions: | ||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS | ||
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
DEALINGS IN THE SOFTWARE. | ||
""" | ||
from __future__ import annotations | ||
|
||
import re | ||
import warnings | ||
from datetime import date | ||
from importlib.metadata import PackageNotFoundError, version | ||
|
||
__all__ = ("__version__", "VersionInfo", "version_info") | ||
|
||
from typing import Literal, NamedTuple | ||
|
||
from .utils import deprecated | ||
|
||
try: | ||
__version__ = version("py-cord") | ||
except PackageNotFoundError: | ||
# Package is not installed | ||
try: | ||
from setuptools_scm import get_version # type: ignore[import] | ||
|
||
__version__ = get_version() | ||
except ImportError: | ||
# setuptools_scm is not installed | ||
__version__ = "0.0.0" | ||
warnings.warn( | ||
"Package is not installed, and setuptools_scm is not installed. " | ||
f"As a fallback, {__name__}.__version__ will be set to {__version__}", | ||
RuntimeWarning, | ||
stacklevel=2, | ||
) | ||
|
||
|
||
class VersionInfo(NamedTuple): | ||
major: int | ||
minor: int | ||
micro: int | ||
release_level: Literal["alpha", "beta", "candidate", "final"] | ||
serial: int | ||
build: int | None = None | ||
commit: str | None = None | ||
date: date | None = None | ||
|
||
@property | ||
@deprecated("release_level", "2.3") | ||
def releaselevel(self) -> Literal["alpha", "beta", "candidate", "final"]: | ||
return self.release_level | ||
|
||
|
||
version_regex = re.compile( | ||
r"^(?P<major>\d+)(?:\.(?P<minor>\d+))?(?:\.(?P<patch>\d+))?" | ||
r"(?:(?P<level>rc|a|b)(?P<serial>\d+))?" | ||
r"(?:\.dev(?P<build>\d+))?" | ||
r"(?:\+(?:(?:g(?P<commit>[a-fA-F0-9]{4,40})(?:\.d(?P<date>\d{4}\d{2}\d{2})|))|d(?P<date1>\d{4}\d{2}\d{2})))?$" | ||
) | ||
version_match = version_regex.match(__version__) | ||
if version_match is None: | ||
raise RuntimeError(f"Invalid version string: {__version__}") | ||
raw_info = version_match.groupdict() | ||
|
||
level_info: Literal["alpha", "beta", "candidate", "final"] | ||
|
||
if raw_info["level"] == "a": | ||
level_info = "alpha" | ||
elif raw_info["level"] == "b": | ||
level_info = "beta" | ||
elif raw_info["level"] == "rc": | ||
level_info = "candidate" | ||
elif raw_info["level"] is None: | ||
level_info = "final" | ||
else: | ||
raise RuntimeError("Invalid release level") | ||
|
||
if (raw_date := raw_info["date"] or raw_info["date1"]) is not None: | ||
date_info = date( | ||
int(raw_date[:4]), | ||
int(raw_date[4:6]), | ||
int(raw_date[6:]), | ||
) | ||
else: | ||
date_info = None | ||
|
||
version_info: VersionInfo = VersionInfo( | ||
major=raw_info["major"], | ||
minor=raw_info["minor"], | ||
micro=raw_info["patch"], | ||
release_level=level_info, | ||
serial=raw_info["serial"], | ||
build=raw_info["build"], | ||
commit=raw_info["commit"], | ||
date=date_info, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,116 @@ | ||
[build-system] | ||
requires = [ | ||
"setuptools==65.4.1", | ||
"setuptools-scm==7.0.5" | ||
] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "py-cord" | ||
authors = [ | ||
{name = "Pycord Development"} | ||
] | ||
description = "A Python wrapper for the Discord API" | ||
readme = "README.rst" | ||
requires-python = ">=3.8" | ||
license = {text = "MIT"} | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"License :: OSI Approved :: MIT License", | ||
"Intended Audience :: Developers", | ||
"Natural Language :: English", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Topic :: Internet", | ||
"Topic :: Software Development :: Libraries", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"Topic :: Utilities", | ||
"Typing :: Typed", | ||
] | ||
dynamic = ["version", "dependencies"] | ||
|
||
[project.urls] | ||
Homepage = "https://pycord.dev" | ||
Changelog = "https://github.com/Pycord-Development/pycord/blob/master/CHANGELOG.md" | ||
Source = "https://github.com/Pycord-Development/pycord" | ||
Documentation = "https://docs.pycord.dev" | ||
Tracker = "https://github.com/Pycord-Development/pycord/issues" | ||
Funding = "https://patreon.com/pycord" | ||
|
||
[project.optional-dependencies] | ||
voice = [ | ||
"PyNaCl>=1.3.0,<1.6", | ||
] | ||
docs = [ | ||
"sphinx==4.5.0", | ||
"sphinxcontrib_trio==1.1.2", | ||
"sphinxcontrib-websupport", | ||
"myst-parser", | ||
] | ||
speed = [ | ||
"orjson>=3.5.4", | ||
"aiodns>=1.1", | ||
"Brotlipy", | ||
"cchardet", | ||
] | ||
|
||
[tool.setuptools] | ||
packages = [ | ||
"discord", | ||
"discord.types", | ||
"discord.sinks", | ||
"discord.ui", | ||
"discord.webhook", | ||
"discord.commands", | ||
"discord.ext.commands", | ||
"discord.ext.tasks", | ||
"discord.ext.pages", | ||
"discord.ext.bridge", | ||
] | ||
|
||
[tool.setuptools.dynamic] | ||
dependencies = {file = "requirements.txt"} | ||
|
||
[tool.setuptools_scm] | ||
|
||
[tool.black] | ||
target-version = ['py38', 'py39', 'py310', 'py311'] | ||
|
||
[tool.isort] | ||
profile = "black" | ||
|
||
[tool.mypy] | ||
namespace_packages = true | ||
install_types = true | ||
strict = true | ||
show_error_codes = true | ||
#allow_untyped_decorators = true | ||
#allow_untyped_calls = true | ||
ignore_errors = true | ||
|
||
[tool.pylint.main] | ||
extension-pkg-whitelist = [ | ||
"pydantic", | ||
"ujson" | ||
] | ||
py-version = 3.8 | ||
|
||
[tool.pylint.messages_control] | ||
enable = [ | ||
"bad-indentation", | ||
"line-too-long" | ||
] | ||
disable = [ | ||
"protected-access", | ||
"fixme" | ||
] | ||
|
||
[tool.pylint.format] | ||
indent-string = ' ' | ||
max-line-length = 120 | ||
|
||
[tool.pytest.ini_options] | ||
asyncio_mode = "auto" |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.