-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpyproject.toml
42 lines (38 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
[tool.poetry]
name = "bonsai"
version = "1.5.3"
description = "Python 3 module for accessing LDAP directory servers."
authors = ["noirello <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8"
gevent = { version = "^23.9.0", optional = true }
tornado = { version = "^6.2", optional = true }
trio = { version = "<1.0", optional = true }
typing-extensions = { version = ">=4.0.0", python = "<3.8" }
[tool.poetry.extras]
gevent = ["gevent"]
tornado = ["tornado"]
trio = ["trio"]
[tool.poetry.dev-dependencies]
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
pytest-timeout = "^2.1.0"
codecov = "2.1.13"
sphinx = "^7.1.2"
furo = "2023.8.19"
pylint = "^2.14.5"
mypy = "^1.1.1"
black = "23.7.0"
pydivert = { version = "^2.1", markers = "sys_platform == 'win32'" }
# The following two are delocate dependencies,
# that need to be specified to make poetry happy.
machomachomangler = { version = "0.0.1", markers = "sys_platform == 'darwin'" }
bindepend = { version = "^0.1", markers = "sys_platform == 'darwin'" }
delocate = { version = "^0.10", markers = "sys_platform == 'darwin'" }
[build-system]
requires = [
"setuptools >= 40.6.2",
"wheel >= 0.30.0",
]
build-backend = "setuptools.build_meta"