-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (39 loc) · 1.05 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
[tool.poetry]
name = "postfixcalc"
version = "0.8.4"
description = "the stupid postfix evaluator"
authors = ["Mahdi Haghverdi <[email protected]>"]
license = "LICENSE"
readme = "README.md"
repository = "https://github.com/mahdihaghverdi/postfixcalc"
keywords = [
"parse",
"calculator",
"safe calculation",
"postfix",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Education",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries",
]
[tool.poetry.dependencies]
python = "^3.10"
black = "^22.12.0"
[tool.poetry.group.dev.dependencies]
black = "^22.10.0"
isort = "^5.10.1"
mypy = "^0.982"
flake8 = "^6.0.0"
autoflake = "^2.0.0"
pre-commit = "^2.20.0"
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"