-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (43 loc) · 1.32 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
49
[tool.poetry]
name = "annorepo-client"
version = "0.2.3"
description = "A Python client for accessing an AnnoRepo server"
authors = ["Bram Buitendijk <[email protected]>"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/knaw-huc/annorepo-python-client"
repository = "https://github.com/knaw-huc/annorepo-python-client"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
packages = [{ include = "annorepo" }]
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.27.1"
colorama = "^0.4.4"
icecream = "^2.1.2"
tabulate = "^0.9.0"
#grpcio = "^1.59.0"
google = "^3.0.0"
google-api-python-client = "^2.103.0"
sphinx-rtd-theme = "^2.0.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/knaw-huc/annorepo-python-client/issues"
[tool.poetry.scripts]
version = 'poetry_scripts:version'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
filterwarnings = [
"error",
"ignore::UserWarning",
# note the use of single quote below to denote "raw" strings in TOML
'ignore:TestResult has no addDuration method',
]