forked from tyasird/pythonFLEX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (54 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
69 lines (54 loc) · 1.63 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
[project]
name = "pythonflex"
version = "0.3.1"
description = "pythonFLEX is a benchmarking toolkit for evaluating CRISPR screen results against biological gold standards. The toolkit computes gene-level and complex-level performance metrics, helping researchers systematically assess the biological relevance and resolution of their CRISPR screening data."
readme = "README.md"
authors = [
{ name = "Yasir Demirtaş", email = "tyasird@hotmail.com" }
]
requires-python = ">=3.9"
# Exclude the input folder
exclude = ["src/pythonflex/input/*", "src/pythonflex/output/*", "src/pythonflex/examples/output/*",
"src/pythonflex/examples/.tmp/*"]
dependencies = [
"adjustText",
"art",
"bitarray",
"emoji",
"ipython",
"joblib",
"loguru",
"matplotlib",
"numba",
"numpy",
"pandas",
"pyarrow",
"python-slugify",
"scikit-learn",
"scipy",
"tqdm",
"importlib-resources" # <- Only needed for Python < 3.9
]
[project.scripts]
pythonflex = "pythonflex:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
ignore = ["F541"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["pythonflex*"]
[tool.setuptools.package-data]
pythonflex = ["data/**/*.parquet", "data/**/*.csv", "data/**/*.tsv", "data/**/*.json", "data/**/*.txt", "data/**/*.xlsx", "data/**/*.xls", "data/**/*.h5", "data/**/*.hdf5"]
[tool.hatch.build]
exclude = ["**/result.pkl", "examples/output"]
[tool.hatch.build.targets.wheel]
packages = ["src/pythonflex"]
[tool.uv.sources]
pythonflex = { workspace = true }
[dependency-groups]
dev = [
"pythonflex",
]