-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (45 loc) · 1.51 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[tool.poetry]
name = "uprate"
version = "0.3"
description = "Ratelimits. Dumbified. A fully typed, simple ratelimit library."
authors = ["WizzyGeek <[email protected]>"]
license = "MIT"
keywords = ["ratelimits", "limits", "ratelimit"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed"
]
readme = "README.md"
homepage = "https://github.com/WizzyGeek/uprate#readme"
repository = "https://github.com/WizzyGeek/uprate"
documentation = "https://uprate.readthedocs.io/en/latest/"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/WizzyGeek/uprate/issues"
"Discord" = "https://discord.gg/udmdsFk6Yx"
[tool.poetry.dependencies]
python = "^3.9"
Sphinx = {version = "^4.1.1", optional = true}
myst-parser = {version = "^0.15.1", optional = true}
furo = {version = "^2021.7.5-beta.38", optional = true}
sphinx-copybutton = {version = "^0.4.0", optional = true}
[tool.poetry.extras]
docs = ["Sphinx", "myst-parser", "furo", "sphinx-copybutton"]
[tool.poetry.dev-dependencies]
mypy = "^0.910"
[tool.mypy]
show_error_codes = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_unused_configs = true
files = ["uprate", "tests"]
exclude = "docs/"
python_version = "3.10"
[tool.pyright]
include = ["uprate"]
exclude = ["docs", ".git", "**/__pycache__", ".mypy_cache"]
ignore = [".venv"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"