-
Notifications
You must be signed in to change notification settings - Fork 26
/
pyproject.toml
67 lines (60 loc) · 1.95 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
[tool.poetry]
name = "frameioclient"
version = "2.0.1a5"
description='Client library for the Frame.io API'
readme = "README.md"
license='MIT'
homepage = "https://github.com/Frameio/python-frameio-client"
authors = ["Frame.io DevRel <[email protected]>"]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Multimedia :: Video',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11'
]
[tool.poetry.dependencies]
python = "^3.7"
analytics-python = "^1.4.0"
enlighten = "^1.10.2"
importlib-metadata = "^4.11.3"
requests = "^2.27.1"
token-bucket = "^0.3.0"
urllib3 = "^1.26.9"
xxhash = "^3.0.0"
furl = "^2.1.3"
tqdm = "^4.66.2"
[tool.poetry.dev-dependencies]
bump2version = "^1.0.1"
# Optional dependencies
Sphinx = { version = "^4.4.0", optional = true }
sphinx-jekyll-builder = { version = "^0.3.0", optional = true }
sphinxcontrib-restbuilder = { version = "^0.3", optional = true }
sphinx-autobuild = { version = "^2021.3.14", optional = true }
contentful_management = { version = "^2.11.0", optional = true }
python-frontmatter = { version = "^1.0.0", optional = true }
sphinx-autodoc-typehints = { version = "^1.17.0", optional = true }
furo = { version = "^2022.3.4", optional = true }
python-dotenv = "^0.19.2"
[tool.poetry.extras]
docs = [
"sphinx",
"sphinx-jekyll-builder",
"sphinxcontrib-restbuilder",
"sphinx-autobuild",
"contentful_management",
"python-frontmatter",
"sphinx-autodoc-typehints",
"furo"
]
[tool.poetry.scripts]
fiocli = 'frameioclient.fiocli:main'
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta:__legacy__"