-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpyproject.toml
48 lines (45 loc) · 1.33 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 = "tamr-unify-client"
version = "0.0.0"
description = "Python Client for the Tamr API"
license = "Apache-2.0"
authors = ["Samuel Kalish <[email protected]>"]
readme = "README.md"
homepage = "https://tamr-client.readthedocs.io/en/stable/"
repository = "https://github.com/Datatamer/tamr-client"
keywords = ["tamr"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
packages = [
{ include = "tamr_client" },
{ include = "tamr_unify_client" },
]
include = ["tamr_client/py.typed"]
[tool.poetry.dependencies]
python = "^3.7.1"
requests = "^2.22"
urllib3 = "<2"
[tool.poetry.dev-dependencies]
responses = "^0.10.6"
flake8-import-order = "^0.18.1"
flake8 = "^5.0.0"
pytest = "^7.2.0"
nox = "^2022.11.21"
pandas = "^1.0.5"
black = "^22.12.0"
mypy = "^1.2.0"
types-requests = "^2.30.0"
[build-system]
requires = ["poetry>=1.4"]
build-backend = "poetry.masonry.api"