-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (30 loc) · 870 Bytes
/
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
[tool.poetry]
name = "future-map"
version = "0.1.2"
description = "Simple package to enhance Python's concurrent.futures for memory efficiency"
authors = ["Arai Hiroki <hiroara62@gmail.com>"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/hiroara/future-map"
repository = "https://github.com/hiroara/future-map.git"
keywords = ["concurrency", "thread-pool", "process-pool", "future", "executor"]
packages = [
{ include = "future_map", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
black = "^21.9b0"
pylint = "^2.11.1"
tox = "^3.24.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pylint.messages_control]
good-names=["fn"]
disable = [
"missing-class-docstring",
"missing-module-docstring",
"missing-function-docstring",
]