-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (40 loc) · 965 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
35
36
37
38
39
40
41
42
43
44
[tool.poetry]
name = "dsimplex"
version = "0.2.0"
description = "A simplex implementation in python"
authors = ["terminaldweller <[email protected]>"]
license = "GPL3"
readme = "README.md"
homepage = "https://github.com/terminaldweller/simplex"
repository = "https://github.com/terminaldweller/simplex"
keywords = ["simplex","linear-programming","lp"]
classifiers = [
"Environment :: Console",
]
include = [
"LICENSE",
]
packages = [
{include = "dsimplex"}
]
[tool.poetry.scripts]
dsimplex = "dsimplex:main"
dsimplex-gui = "dsimplex-gui:main:"
[tool.poetry.dependencies]
python = ">=3.8,<=3.12"
numpy = "^1.22.4"
scipy = "^1.8.1"
Jinja2 = "^3.1.2"
Markdown = "^3.4.1"
ttkthemes = "^3.2.2"
Pillow = "^9.2.0"
tkhtmlview = "^0.1.1.post5"
tksheet = "^5.4.1"
pandas = "^1.5.2"
fastapi = "^0.89.1"
uvicorn = "^0.20.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"