This repository was archived by the owner on Jul 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
73 lines (59 loc) · 1.6 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# Build system/Metadata (Poetry)
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "discatcore"
version = "0.1.0"
description = "A lower level Discord API wrapper that functions as the core layer of DisCatPy."
license = "MIT"
authors = ["EmreTech <[email protected]>"]
readme = "README.md"
repository = "https://github.com/discatpy-dev/core"
keywords = [
"discord",
"api",
"discord api",
"wrapper",
"discord api wrapper",
"internet",
"networking",
"bots",
"discord bots",
"discord framework",
"low level",
"typed",
]
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Framework :: AsyncIO",
"Framework :: aiohttp",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
[tool.poetry.dependencies]
python = ">=3.9"
aiohttp = ">=3.6.0,<3.9.0"
discord-typings = {git = "https://github.com/Bluenix2/discord-typings.git"}
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/discatpy-dev/core/issues"
# Formatting
[tool.black]
line-length = 100
target-version = ["py39", "py310"]
[tool.isort]
profile = "black"
py_version = 39
line_length = 100
combine_as_imports = true
filter_files = true
[tool.pyright]
strict = ["discatcore/**"]