-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (24 loc) · 840 Bytes
/
pyproject.toml
File metadata and controls
27 lines (24 loc) · 840 Bytes
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
# pyproject.toml
[build-system]
requires = ["setuptools>=68", "wheel", "build"]
build-backend = "setuptools.build_meta"
[project]
name = "ragulate-bio"
version = "1.1.2"
description = "Retrieval augmented validation for TF inference in single cell biology"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "Mehrdad Zandigohar" }]
keywords = ["single-cell", "regulatory networks", "RAG", "bioinformatics"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
dependencies = ["rank-bm25", "numpy>=1.23"]
[tool.setuptools]
packages = ["ragulate_bio"] # no src layout, package at repo root
[project.scripts]
ragulate-bio = "ragulate_bio.cli:main"