Skip to content

Commit 32b52d0

Browse files
committed
Update dependencies, add poetry.
1 parent 912a26d commit 32b52d0

File tree

2 files changed

+26
-4
lines changed

2 files changed

+26
-4
lines changed

pyproject.toml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[tool.poetry]
2+
name = "mbdirector"
3+
version = "0.1.0"
4+
description = ""
5+
authors = ["Your Name <[email protected]>"]
6+
license = "GPL"
7+
readme = "README.md"
8+
9+
[tool.poetry.dependencies]
10+
python = "^3.8"
11+
click = "^8.1.3"
12+
redis = "^4.5.5"
13+
Flask = "^2.3.2"
14+
jsonschema = "^4.17.3"
15+
16+
17+
[build-system]
18+
requires = ["poetry-core"]
19+
build-backend = "poetry.core.masonry.api"
20+
21+
[tool.poetry.scripts]
22+
mbdirector = "mbdirector.main:cli"

setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
'templates/*']
1414
},
1515
install_requires=[
16-
'jsonschema==2.6.0',
17-
'click==7.0',
18-
'redis==3.5.3',
19-
'Flask==1.0.2'
16+
'jsonschema==4.17.3',
17+
'click==8.1.3',
18+
'redis==4.5.5',
19+
'Flask==2.3.2'
2020
],
2121
entry_points='''
2222
[console_scripts]

0 commit comments

Comments
 (0)