Browse Source

Add pyproject.toml

pull/7494/head
Rapptz 3 years ago
parent
commit
8b96822ca1
  1. 31
      pyproject.toml
  2. 1
      setup.py

31
pyproject.toml

@ -0,0 +1,31 @@
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 125
skip-string-normalization = true
[tool.isort]
profile = "black"
combine_as_imports = true
combine_star = true
line_length = 125
[tool.pyright]
include = [
"discord",
"discord/types",
"discord/ui",
"discord/ext",
"discord/ext/commands",
"discord/ext/tasks",
]
exclude = [
"**/__pycache__",
"build",
"dist",
"docs",
]
pythonVersion = "3.8"
typeCheckingMode = "basic"

1
setup.py

@ -79,6 +79,7 @@ setup(name='discord.py',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Internet',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',

Loading…
Cancel
Save