-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
30 lines (25 loc) · 891 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
[project]
name = "dbastable"
dynamic = ["version"]
description = "The easiest way to work with simple SQLite tables."
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Julio Campagnolo", email = "juliocampagnolo@gmail.com" }
]
dependencies = ["numpy"]
[project.optional-dependencies]
test = ["coverage", "astropy"]
docs = ["sphinx", "pydata-sphinx-theme", "sphinx-automodapi", "numpydoc"]
[project.urls]
Homepage = "https://github.com/juliotux/dbastable"
Issues = "https://github.com/juliotux/dbastable/issues"
Source = "https://github.com/juliotux/dbastable"
Documentation = "https://dbastable.readthedocs.io/en/latest/"
[build-system]
requires = ["setuptools>=42", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "dbastable/version.py"
version_scheme = "guess-next-dev"
local_scheme = "no-local-version"