Spaces:
Build error
Build error
File size: 1,216 Bytes
916dea4 7db49e0 916dea4 6f06d5d | 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 45 46 47 48 49 | [build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.bumpversion]
current_version = "0.6.0"
commit = "true"
tag = "true"
tag_name = "v{new_version}"
#[[tool.bumpversion.files]]
#filename = "version.txt"
#search = "{current_version}"
#replace = "{new_version}"
[project]
name = "document-qa-engine"
license = { file = "LICENSE" }
authors = [
{ name = "Luca Foppiano", email = "lucanoro@duck.com" },
]
maintainers = [
{ name = "Luca Foppiano", email = "lucanoro@duck.com" }
]
description = "Scientific Document Insight Q/A"
readme = "README.md"
dynamic = ['version', "dependencies"]
[tool.setuptools]
license-files = []
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools_scm]
[project.urls]
Homepage = "https://document-insights.streamlit.app"
Repository = "https://github.com/lfoppiano/document-qa"
Changelog = "https://github.com/lfoppiano/document-qa/blob/main/CHANGELOG.md"
[tool.ruff]
# Mirrors the previous flake8 configuration (line length 127, GitHub editor width).
line-length = 127
[tool.ruff.lint]
# pycodestyle errors (E) + pyflakes (F), matching the old flake8 default rule set.
select = ["E", "F"] |