forked from drahamim/invenflask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (30 loc) · 821 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
[project]
name = "invenflask"
dynamic = ["version"]
authors = [
{ name = "Daniel Rahamim" }
]
description = "A Flask-based asset checkin/checkout system"
readme = "README.md"
# python 3.9 introduces importlib.resources.files
requires-python = ">=3.9"
dependencies = [
"flask >=2.2.2, <3",
"toml >=0.10.2, <1",
"pandas ==1.5.3",
"flask-assets >=2.0",
"Bootstrap-flask >=2.2.0",
"Flask-Modals >=0.5.1",
"wheel >=0"
]
[project.scripts]
invenflask-init-db = "invenflask.init_db:main"
[project.urls]
"Bug Tracker" = "https://github.com/drahamim/invenflask/issues"
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=7.1"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "src/invenflask/_version.py"
[tool.distutils.bdist_wheel]
universal = true