55 lines
1.4 KiB
TOML
55 lines
1.4 KiB
TOML
[project]
|
|
name = "baserow-premium"
|
|
authors = [{ name = "Bram Wiepjes (Baserow)", email = "bram@baserow.io" }]
|
|
description = """Baserow is an open source no-code database tool and Airtable \
|
|
alternative. Easily create a relational database without any \
|
|
technical expertise. Build a table and define custom fields \
|
|
like text, number, file and many more."""
|
|
# mixed license
|
|
license={file="LICENSE"}
|
|
requires-python=">=3.11"
|
|
version = "1.29.1"
|
|
classifiers = []
|
|
|
|
[project.urls]
|
|
Homepage = "https://baserow.io"
|
|
"Bug Tracker" = "https://gitlab.com/baserow/baserow/-/issues/"
|
|
Documentation = "https://baserow.io/user-docs"
|
|
Support = "https://community.baserow.io/"
|
|
Changelog = "https://gitlab.com/baserow/baserow/-/issues/"
|
|
|
|
[tool.black]
|
|
exclude = '''
|
|
/(
|
|
| migrations
|
|
| generated
|
|
)/
|
|
'''
|
|
|
|
[tool.setuptools]
|
|
include-package-data = true
|
|
# https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
|
|
platforms = ["Linux"]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src/"]
|
|
include = ["baserow_premium", "baserow_premium.*"]
|
|
|
|
|
|
[tool.poetry]
|
|
name = "baserow-premium"
|
|
version = "1.29.1"
|
|
description = ""
|
|
authors = ["Your Name <you@example.com>"]
|
|
readme = "README.md"
|
|
packages = [
|
|
{ include = "baserow_premium", from = "src" },
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|