Skip to content

Commit 697e379

Browse files
committed
📤 Version bump
1 parent 35a32df commit 697e379

File tree

2 files changed

+40
-1
lines changed

2 files changed

+40
-1
lines changed

‎askitsu/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
__author__ = 'ShomyKohai'
1515
__license__ = 'MIT'
1616
__copyright__ = 'Copyright 2022-present ShomyKohai'
17-
__version__ = '0.3.0'
17+
__version__ = '0.4.0'
1818

1919
from .anime import *
2020
from .client import *

‎pyproject.toml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
[tool.poetry]
2+
name = "askitsu"
3+
version = "0.4.0"
4+
description = "An async wrapper for Kitsu.io API written in python"
5+
authors = ["Shomy <[email protected]>"]
6+
license = "MIT"
7+
readme = "README.md"
8+
documentation = "https://askitsu.rtfd.org/"
9+
repository = "https://github.com/ShomyKohai/askitsu"
10+
keywords = ["kitsu", "kitsu api", "kitsu.io", "async"]
11+
classifiers = [
12+
'Development Status :: 3 - Alpha',
13+
'License :: OSI Approved :: MIT License',
14+
'Intended Audience :: Developers',
15+
'Natural Language :: English',
16+
'Operating System :: OS Independent',
17+
'Programming Language :: Python :: 3.8',
18+
'Programming Language :: Python :: 3.9',
19+
'Topic :: Internet',
20+
'Topic :: Software Development :: Libraries',
21+
'Topic :: Software Development :: Libraries :: Python Modules',
22+
'Topic :: Utilities',
23+
'Typing :: Typed'
24+
]
25+
26+
include = [
27+
"LICENSE",
28+
]
29+
30+
[tool.poetry.dependencies]
31+
python = "^3.8"
32+
aiohttp = "^3.8.1"
33+
colorama = "^0.4.4"
34+
35+
[tool.poetry.dev-dependencies]
36+
37+
[build-system]
38+
requires = ["poetry-core>=1.0.0"]
39+
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)