-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (32 loc) · 1.09 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
[tool.poetry]
name = "happyaccidentsapi"
version = "0.0.3"
description = "API Wrapper for HappyAccidents"
authors = ["hoopengo <hoopengo@yandex.ru>"]
readme = ["PYPI.md"]
license = "Apache-2.0"
repository = "https://github.com/hoopengo/happyaccidentsapi"
keywords = ["api", "happyaccidents", "ai"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[tool.poetry.dependencies]
python = "^3.8"
pydantic = "^2.0.0"
aiohttp = { extras = ["speedups"], version = "^3.8.4" }
aiofiles = "^23.1.0"
[tool.poetry.group.dev.dependencies]
python-dotenv = "^1.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"