forked from Datatamer/tamr-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (36 loc) · 1.13 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
[tool.poetry]
name = "tamr-unify-client"
version = "0.6.0-dev"
description = "Python Client for the Tamr Unify API"
license = "Apache-2.0"
authors = ["Pedro Cattori <[email protected]>"]
readme = "README.md"
homepage = "tamr-unify-python-client.rtfd.io"
repository = "https://github.com/Datatamer/unify-client-python"
keywords = ["tamr", "unify"]
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.6",
"Programming Language :: Python :: 3.7"
]
[tool.poetry.dependencies]
python = "^3.6"
requests = "^2.22"
[tool.poetry.dev-dependencies]
Sphinx = "^2.1"
responses = "^0.10.6"
flake8-import-order = "^0.18.1"
pytest = "^4.6"
black = {version = "^19.3b0",allows-prereleases = true}
flake8 = "^3.7"
toml = "^0.10.0"
sphinx_rtd_theme = "^0.4.3"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"