forked from amina196/OrderedDictionary
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (20 loc) · 670 Bytes
/
pyproject.toml
File metadata and controls
30 lines (20 loc) · 670 Bytes
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
[tool.poetry]
name = "python2-ordereddict"
version = "0.1.0"
description = "Drop-in replacement for the Python 2.7 OrderedDict class that supports legacy Python versions down to 2.1"
authors = ["Luca Salvarani <lucasalvarani99@gmail.com>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "ordereddict.py", from = "." }]
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
vermin = "^1.5.1"
poethepoet = "^0.19.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poe.tasks]
test = "python -m unittest discover --failfast --catch --verbose"