-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (40 loc) · 1.02 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
[tool.poetry]
name = "picsart-creative-apis-py-sdk"
version = "1.0.0"
description = "Picsart Creative APIs SDK. Includes helper methods and functions for Programmable Image APIs (e.g. Remove Background, Upscale, Enhance, Effects) and the GenAI APIs (e.g. Text2Image, Replace, Expand Image)."
authors = ["PicsArt, Inc."]
license = "MIT License"
readme = "README.md"
packages = [
{include = "picsart_sdk", from = "src"}
]
[tool.poetry.dependencies]
python = "^3.9"
httpx = "^0.27.2"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "7.4.7"
furo = "2024.8.6"
sphinx_copybutton = "0.5.2"
sphinx-remove-toctrees = "1.0.0.post1"
sphinx-autodoc-typehints = "2.3.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
black = "^24.10.0"
ruff = "^0.7.4"
pytest-asyncio = "^0.24.0"
isort = "^5.13.2"
pre-commit = "^4.0.1"
pytest-cov = "^6.0.0"
[tool.isort]
profile = "black"
[tool.black]
exclude = '''
/(
docs
)/
'''
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"