forked from aosingh/sqlite_rx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
99 lines (90 loc) · 2.73 KB
/
pyproject.toml
File metadata and controls
99 lines (90 loc) · 2.73 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "sqlite_rx"
version = "2.0.0-alpha"
description = "Python SQLite Client and Server"
keywords = ["sqlite", "client", "server", "fast", "secure"]
license = {text = "MIT 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",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"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",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
]
authors = [{name = "Abhishek Singh", email = "[email protected]"}]
maintainers = [{name = "Abhishek Singh", email = "[email protected]"}]
requires-python = ">=3.8"
dependencies = [
"billiard==4.2.1",
"msgpack==1.1.0",
"pyzmq==26.2.0",
"tornado==6.4.2",
"click==8.1.7",
"psutil>=7.0.0",
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://aosingh.github.io/sqlite_rx/"
Documentation = "https://aosingh.github.io/sqlite_rx/"
Source = "https://github.com/aosingh/sqlite_rx"
"Bug Tracker" = "https://github.com/aosingh/sqlite_rx/issues"
CI = "https://github.com/aosingh/sqlite_rx/actions"
"Release Notes" = "https://github.com/aosingh/sqlite_rx/releases"
License = "https://github.com/aosingh/sqlite_rx/blob/master/LICENSE"
[project.optional-dependencies]
cli = [
"click==8.1.7",
"rich==13.9.3",
"pygments==2.18.0",
]
[project.scripts]
sqlite-server = "sqlite_rx.cli.server:main"
sqlite-client = "sqlite_rx.cli.client:main"
sqlite-multi-server = "sqlite_rx.cli.multiserver:main"
[tool.setuptools]
zip-safe = false
package-dir = {sqlite_rx = "sqlite_rx"}
include-package-data = true
script-files = ["bin/curve-keygen"]
test-require = """
pytest
coverage"""
[tool.setuptools.packages.find]
where = ["sqlite_rx"]
exclude = ["tests"]
namespaces = false
[tool.coverage.run]
branch = true
concurrency = ["multiprocessing"]
parallel = true
source = ["sqlite_rx"]
[dependency-groups]
dev = [
"build>=1.2.2.post1",
"coverage>=7.6.1",
"files-to-prompt>=0.6",
"hatchling>=1.27.0",
"pip>=25.0.1",
"pytest>=8.3.4",
"setuptools>=75.3.0",
"twine>=6.1.0",
"wheel>=0.45.1",
]