-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (44 loc) · 1.19 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
50
51
[build-system]
requires = ['poetry-core']
build-backend = 'poetry.core.masonry.api'
[tool.poetry]
name = 'opvious'
version = '0.22.2rc1'
description = 'Opvious Python SDK'
authors = ['Opvious Engineering <[email protected]>']
readme = 'README.md'
repository = 'https://github.com/opvious/sdk.py'
packages = [{include = 'opvious', from = 'src'}]
[tool.poetry.dependencies]
aiohttp = {version = '^3.8', optional = true}
backoff = '^2.2'
Brotli = {version = '^1.0.9', optional = true}
docopt = {version = '^0.6.2', optional = true}
humanize = '^4.4.0'
importnb = '^2023.1.7'
lru-dict = {version = '^1.3.0', optional = true}
numpy = '>=1.21'
pandas = '>=1.4'
python = '>=3.9,<4'
[tool.poetry.group.dev.dependencies]
black = {extras = ['jupyter'], version = '^22.10.0'}
flake8 = '^7.0.0'
mypy = '^1.2.0'
pytest = '^7.1.2'
pytest-asyncio = '^0.20.2'
pandas-stubs = '^2.2.2.240514'
sphinx = '^7.2.6'
sphinx-rtd-theme = '^1.3.0'
types-docopt = '^0.6.11.3'
jupyter = '^1.0.0'
[tool.poetry.extras]
aio = ['aiohttp', 'Brotli', 'lru-dict']
cli = ['docopt']
[tool.black]
line-length = 79
include = '\.py$'
[tool.mypy]
disable_error_code = 'import-untyped'
[tool.pytest.ini_options]
log_level = 'DEBUG'
addopts = '-p no:importnb'