-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
32 lines (29 loc) · 868 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
[tool.poetry]
name = "python-datastructures"
version = "0.1.3"
description = "Python datastructures package"
authors = ["Tomasz Turek <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/TuTomasz/Python-Datastructures"
repository = "https://github.com/TuTomasz/Python-Datastructures"
keywords = ["Datastructures","Data Structures","queue","stack","trie","heap","linked-list"]
classifiers = [
"Operating System :: OS Independent",
"Topic :: Software Development :: Documentation",
"Topic :: Software Development :: Libraries :: Python Modules"
]
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
black = "^20.8b1"
mypy = "^0.790"
Pylint = "^2.6.0"
Pdoc3 = "^0.9.2"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"