-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
39 lines (34 loc) · 1018 Bytes
/
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
[tool.poetry]
name = "askitsu"
version = "1.0.0"
description = "An async API wrapper for Kitsu.io"
authors = ["ShomyKohai"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/ShomyKohai/askitsu"
keywords = ["kitsu", "kitsu api", "kitsu.io", "async"]
classifiers = [
"Development Status :: 3 - Alpha",
"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",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Typing :: Typed",
]
include = [
"LICENSE",
]
[tool.poetry.urls]
"Documentation" = "https://askitsu.rtfd.org/"
"Bug Tracker" = "https://github.com/ShomyKohai/askitsu/issues"
[tool.poetry.dependencies]
python = "^3.8"
aiohttp = "^3.6.0"
colorama = "^0.4.6"