-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
53 lines (48 loc) · 1.26 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
[project]
name = "ayon-python-api"
version = "1.0.12-dev.1"
description = "AYON Python API"
license = {file = "LICENSE"}
readme = {file = "README.md", content-type = "text/markdown"}
authors = [
{name = "ynput.io", email = "[email protected]"}
]
keywords = ["AYON", "ynput", "OpenPype", "vfx"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
dependencies = [
"requests >= 2.27.1",
"Unidecode >= 1.3.0",
"appdirs >=1, <2",
]
[project.urls]
Repository = "https://github.com/ynput/ayon-python-api"
Changelog = "https://github.com/ynput/ayon-python-api/releases"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "ayon-python-api"
version = "1.0.12-dev.1"
description = "AYON Python API"
authors = [
"ynput.io <[email protected]>"
]
packages = [
{ include = "ayon_api" }
]
[tool.poetry.dependencies]
python = ">=3.6.5"
requests = "^2.27"
Unidecode = "^1.3"
appdirs = "^1.4"
[tool.poetry.group.dev.dependencies]
sphinx = "*"
mock = "*"
sphinx-autoapi = "*"
revitron-sphinx-theme = { git = "https://github.com/revitron/revitron-sphinx-theme.git", branch = "master" }
pytest = "^6.2.5"
pydocstyle = "^6.3.0"