-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
102 lines (96 loc) · 2.14 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "leonardo_api"
version = "0.0.11"
authors = [
{ name="Iliya Vereshchagin", email="[email protected]" },
]
maintainers = [
{ name="Iliya Vereshchagin", email="[email protected]" },
]
keywords = ["leonardo", "ai", "image generation", "artificial intelligence", "api", "llm", "leonardo.ai", "stablediffusion"]
description = "Leonardo.ai Python API"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.9"
dependencies = [
'requests',
'aiohttp',
'aiofiles',
'asyncio',
'requests',
'urllib3',
'async-timeout',
'certifi',
'charset-normalizer',
'frozenlist'
]
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Visualization",
]
install_requires = [
'requests',
'aiohttp',
'aiofiles',
'asyncio',
'requests',
'urllib3',
'async-timeout',
'certifi',
'charset-normalizer',
'frozenlist'
]
[project.urls]
"Homepage" = "https://github.com/wwakabobik/leonardo_api"
"Bug Tracker" = "https://github.com/wwakabobik/leonardo_api/issues"
[tool.black]
line-length = 120
[tool.flake8]
max-line-length = 120
extend-ignore = """
Q000,
WPS306,
I001,
I005,
WPS229,
D400,
WPS317,
S101,
WPS507,
DAR101,
DAR201,
WPS112,
F401,
WPS300,
WPS412,
DAR301,
D401,
D205,
WPS615,
I004,
WPS110,
WPS420,
C812,
W1203,
R0801,
WPS305,
WPS226,
DAR401,
WPS237
"""
[tool.pylint]
max-line-length = 120