-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
46 lines (37 loc) · 1.46 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
[tool.poetry]
name = "coveo-python-oss"
version = "0.0.1"
description = "coveo-python-oss virtual environment bootstrap for developers"
authors = ["Jonathan Piché <[email protected]>"]
package-mode = false
[tool.poetry.dependencies]
python = ">=3.8" # the docker package in coveo-testing-extras can't run on 3.10
coveo-arnparse = { path = 'coveo-arnparse/', develop = true }
coveo-example-library = { path = 'coveo-example-library/', develop = true }
coveo-functools = { path = 'coveo-functools/', develop = true }
coveo-itertools = { path = 'coveo-itertools/', develop = true }
coveo-pypi-cli = { path = 'coveo-pypi-cli/', develop = true }
coveo-ref = { path = 'coveo-ref/', develop = true }
coveo-settings = { path = 'coveo-settings/', develop = true }
coveo-styles = { path = 'coveo-styles/', develop = true }
coveo-systools = { path = 'coveo-systools/', develop = true }
coveo-testing = { path = 'coveo-testing/', develop = true }
coveo-testing-extras = { path = 'coveo-testing-extras/', develop = true }
[tool.poetry.group.dev.dependencies] # pydev projects' dev-dependencies are autogenerated; do not edit manually!
attrs = "*"
bandit = "*"
black = "*"
flake8 = "*"
mypy = "1.9.0"
pytest = "*"
requests-mock = "*"
types-emoji = "*"
types-requests = "*"
typing_extensions = "*"
[tool.stew]
pydev = true
[tool.black]
line-length = 100
[build-system]
requires = ["poetry_core>=1.0.0", "setuptools"]
build-backend = "poetry.core.masonry.api"