-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (37 loc) · 1.03 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
[build-system]
requires = ["flit_core>=3.9.0"]
build-backend = "flit_core.buildapi"
[project]
name = "antidb"
version = "2024.4.6"
authors = [
{ name="Platon Bykadorov", email="platon.work@gmail.com" },
]
description = "The simplest index-and-search engine for huge multiline text files. Focused primarily on bioinformatics. Inspired by tabix, but isn't its replacement. Written in Python. Works on top of Zstandard Seekable & pyzstd SeekableZstdFile."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
]
keywords = [
"python",
"search-engine",
"parser",
"performance",
"bioinformatics",
"big-data",
"dbms",
"indexer",
"zstd",
"zstandard",
"seekable",
"pyzstd",
]
dependencies = [
"pyzstd >=0.15.9",
]
[project.urls]
"Homepage" = "https://github.com/PlatonB/antidb"
"Bug Tracker" = "https://github.com/PlatonB/antidb/issues"