-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (52 loc) · 1.43 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "aiomonobank"
description = "Asynchronous Python library for monobank API"
long_description='readme_contents'
long_description_content_type='text/x-rst'
readme = "README.rst"
requires-python = ">=3.10"
authors = [
{ name = "TT1410", email = "taras@plaksii.cf" }
]
maintainers = [
{ name = "TT1410", email = "taras@plaksii.cf" }
]
keywords = [
"monobank",
"bank",
"api",
"library",
"wrapper",
"asyncio",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Framework :: AsyncIO",
"Typing :: Typed",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Communications :: Chat",
]
dependencies = [
"aiohttp~=3.8.4",
"pydantic~=1.10.7",
"certifi>=2022.12.7",
"pytz>=2023.3",
"aiocache>=0.12.1",
]
dynamic = ["version"]
[tool.hatch.version]
path = "aiomonobank/__init__.py"
[project.urls]
Homepage = "https://github.com/TT1410/aiomonobank"
Documentation = "https://github.com/TT1410/aiomonobank"
Repository = "https://github.com/TT1410/aiomonobank"