-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (52 loc) · 1.63 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[build-system]
requires = ["hatchling","setuptools","cython","build","wheel","hatch-requirements-txt"]
build-backend = "hatchling.build"
[project]
name = "poufdb"
dynamic = ["version","dependencies"]
description = "PoufDB (aka Pouffe) provides scripts for create & serve rest api similar to CouchDB but for sql-like db on backend"
readme = "README.en.md"
requires-python = ">=3.8"
license = "Apache-2.0"
license-files = { globs = ["LICENSES/*"] }
keywords = [
"couchdb",
"pouchdb",
"sql",
"nosql",
"sqlite",
"database sync",
"embedded database wrapper",
#"",
]
authors = [
{ name = "d;)", email = "ablaternae@github.com" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
]
[project.urls]
Documentation = "https://ablaternae.github.io/py-pouffe"
Issues = "https://github.com/ablaternae/py-pouffe/issues"
Source = "https://github.com/ablaternae/py-pouffe"
[project.scripts]
poufdb = "poufdb.cli:main"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.hatch.version]
path = "src/poufdb/__about__.py"
[[tool.hatch.envs.all.matrix]]
python = ["3.8", "3.9", "3.10", "3.11", "3.12"]
[tool.hatch.build.targets.wheel]
# https://hatch.pypa.io/latest/config/build/
packages = ["src/poufdb", "src/information_schema"]
#sources = ["src"]