-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
101 lines (90 loc) · 2.44 KB
/
pyproject.toml
File metadata and controls
101 lines (90 loc) · 2.44 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[build-system]
requires = ['setuptools >= 40.8.0', 'wheel']
build-backend = "setuptools.build_meta"
[project]
name = "sqlite_rx"
dynamic = ["version"]
description = "Python SQLite Client and Server"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.10"
authors = [
{name="Abhishek Singh", email="abhishek.singh20141@gmail.com"}
]
maintainers =[
{name="Abhishek Singh", email="abhishek.singh20141@gmail.com"}
]
keywords = [
"sqlite",
"server",
"client",
"secure"
]
license = "MIT"
license-files = ["LICENSE"]
classifiers = [
"Topic :: Database :: Database Engines/Servers",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS"
]
dependencies = [
"msgpack",
"tornado",
"pyzmq",
"billiard"
]
[project.optional-dependencies]
test = [
"coverage",
"pytest",
]
cli = [
"click",
"rich",
"pygments",
]
[project.scripts]
curve-keygen = "sqlite_rx.cli.keygen:main"
sqlite-server = "sqlite_rx.cli.server:main"
sqlite-client = "sqlite_rx.cli.client:main"
[project.urls]
Homepage = "https://github.com/aosingh/sqlite_rx"
Repository = "https://github.com/aosingh/sqlite_rx"
Issues = "https://github.com/aosingh/sqlite_rx/issues"
Documentation = "https://aosingh.github.io/sqlite_rx/"
CI = "https://github.com/aosingh/sqlite_rx/actions"
[tool.setuptools]
packages = ["sqlite_rx", "sqlite_rx.cli"]
[tool.setuptools.dynamic]
version = { attr = "sqlite_rx.version.__version__" }
[tool.black]
line-length = 79
target-version = ["py310", "py311", "py312", "py313"]
required-version = 24
[tool.ruff]
line-length = 79
target-version = "py310"
per-file-ignores = { "__init__.py" = ["F401"] }
[tool.pytest.ini_options]
minversion = "8.3.0"
testpaths = [
"tests"
]
[tools.coverage.run]
branch = true
concurrency = "multiprocessing"
parallel = true
source = "sqlite_rx"