-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (35 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
37 lines (35 loc) · 1.25 KB
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
[tool.poetry]
name = "dcipher"
version = "0.3.3"
license = "MIT"
description = "The official Python client library for the Dcipher Workflows API"
authors = ["Dcipher Analytics AB <[email protected]>"]
readme = "README.md"
packages = [{ include = "dcipher" }]
homepage = "https://github.com/kairosfuture/dcipher-workflows-api-python"
repository = "https://github.com/kairosfuture/dcipher-workflows-api-python"
classifiers = [
"Typing :: Typed",
"Intended Audience :: Developers",
"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",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
]
[tool.poetry.dependencies]
python = "^3.7"
tenacity = "^8.2.3, <9"
httpx = ">=0.23.0, <1"
requests = "^2.28.2, <3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"