forked from encord-team/encord-client-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (37 loc) · 991 Bytes
/
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
[tool.poetry]
name = "cord-client-python"
version = "0.1.28"
description = "Cord Python SDK Client"
authors = ["Cord Technologies Limited <[email protected]>"]
license = "Apache Software License"
keywords = ["cord"]
packages = [
{ include = "cord"},
]
readme = "README.md"
repository="https://github.com/cord-team/cord-client-python"
documentation="https://docs.cord.tech/docs/client"
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = "^3.6"
python-dateutil = "^2.8.2"
requests = "2.25.0"
uuid = "^1.30"
cryptography = "^3.4.8"
tqdm = "^4.32.1"
[tool.poetry.dev-dependencies]
pytest = "^6.1.2"
pre-commit = "^2.16.0"
black = "^21.12b0"
sphinx-autodoc-typehints = "1.15.2"
prettyprinter = "0.18.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
include = 'cord\/.*'