forked from AKSW/QuitStore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (32 loc) · 902 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
[tool.poetry]
name = "quit"
version = "0.25.4"
description = "Quads in Git - Distributed Version Control for RDF Knowledge Bases"
authors = ["Norman Radtke <http://aksw.org/NormanRadtke>", "Natanael Arndt <http://aksw.org/NatanaelArndt>"]
license = "GPL-3.0-or-later"
[tool.poetry.dependencies]
python = ">=3.7,<3.12"
rdflib = "^6.0.2"
Flask = "^2.0.2"
Flask-Cors = "^3.0.10"
pygit2 = ">=1.1.0"
sortedcontainers = "^2.4.0"
uritools = "^3.0.2"
uWSGI = "^2.0.21"
Jinja2 = "^3.0.0, <3.1.0"
[tool.poetry.group.dev.dependencies]
pylama = {extras = ["toml"], version = "^8.4.1"}
pytest = "^7.2.2"
pytest-cov = "^4.0.0"
coveralls = "^3.3.1"
pyinstaller = "^5.9.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
quitstore = "quit.run:run"
[tool.pylama]
format = "pylint"
skip = "tests/*,quit/tools/*"
ignore = "E402"
max_line_length = 100