-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (40 loc) · 1.33 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (40 loc) · 1.33 KB
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
[tool.poetry]
name = "lysia"
version = "2024.1.0"
description = "A Discord API wrapper in python."
authors = ["SubeCraft"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/SubeCraft/Lysia"
repository = "https://github.com/SubeCraft/Lysia"
classifiers = [
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Typing :: Typed"
]
packages = [{include = "lysia"}]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/SubeCraft/Lysia/issues"
[tool.poetry.dependencies]
python = "^3.12"
httpx = "^0.27.0"
pydantic = "^2.8.0"
loguru = "^0.7.2"
[tool.poetry.group.dev.dependencies]
taskipy = "^1.13.0"
ruff = "^0.3.7"
pyright = "^1.1.370"
[tool.taskipy.settings]
runner = "poetry run"
[tool.taskipy.tasks]
lint = {cmd = "ruff check lysia --fix -e && pyright", help = "Lint, Format & Type Check the project."}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"