This repository was archived by the owner on May 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (52 loc) · 1.48 KB
/
pyproject.toml
File metadata and controls
57 lines (52 loc) · 1.48 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[tool.poetry]
name = "python-pachyderm"
version = "7.6.0"
description = "Python Pachyderm Client"
authors = ["Pachyderm Integrations <integrations@pachyderm.io>"]
include = ["version.json"]
license = "Apache 2.0"
documentation = "https://python-pachyderm.readthedocs.io/en/stable/"
readme = 'README.md'
repository = "https://github.com/pachyderm/python-pachyderm"
keywords = ["pachyderm"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Pythohn :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
grpcio = ">=1.54.2"
grpcio-health-checking = ">=1.38.0"
grpc-interceptor = "^0.13.0"
importlib-metadata = { version = ">1.5.1", python = "<3.8" }
protobuf = ">=3.17.1,<4.0.0"
python-dotenv = ">=1.0.0"
[tool.poetry.dev-dependencies]
black = ">=22.6.0"
certifi = ">=2019.11.28"
flake8 = ">=3.9.1"
myst-parser = "0.15.2"
numpydoc = ">=1.1.0"
pre-commit = ">=2.12.1"
pytest = ">=5.3.4"
pytest-mock = ">=3.6.1"
pytest-timeout = ">=1.4.2"
Sphinx = "4.3.0"
sphinx-rtd-theme = "1.0.0"
tox = ">=3.23.1"
[tool.black]
force-exclude = '''
/(
proto
| src/python_pachyderm/proto
)/
'''
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"