-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (64 loc) · 1.69 KB
/
pyproject.toml
File metadata and controls
72 lines (64 loc) · 1.69 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.distutils.bdist_wheel]
universal = true
[tool.setuptools.dynamic]
version = { attr = "tfscreen.__version__.__version__" }
[tool.setuptools.package-data]
"*" = []
[project]
name = "tfscreen"
dynamic = ["version"]
dependencies = [
"numpy",
"pandas",
"openpyxl",
"matplotlib",
"tqdm",
"statsmodels",
"PyYAML",
"corner",
"numba",
"patsy",
"pybktree",
"pyfastx",
"optax",
"numpyro",
"dill",
"flax",
"jax",
"jaxlib",
"h5py",
"scipy",
]
requires-python = ">=3.10"
authors = [{ name = "Mike Harms", email = "harms@uoregon.edu" }]
maintainers = [{ name = "Mike Harms", email = "harms@uoregon.edu" }]
description = "Simulate or analyze a high-throughput screen of a transcription factor library"
readme = "README.rst"
license = { file = "LICENSE" }
keywords = [
"high-throughput",
"protein",
"transcription factor",
"analysis",
"statistics",
"simulation",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
]
[project.urls]
Repository = "https://github.com/harmslab/tfscreen.git"
"Bug Tracker" = "https://github.com/harmslab/tfscreen/issues"
[project.optional-dependencies]
test = ["coverage", "flake8", "pytest", "genbadge", "pytest-mock"]
docs = ["pydata-sphinx-theme"]
[project.scripts]
tfs-process-fastq = "tfscreen.process_raw.process_fastq:main"
tfs-process-counts = "tfscreen.process_raw.process_counts:main"
tfs-hier-theta = "tfscreen.analysis.hierarchical.analyze_theta:main"
tfs-indep-theta = "tfscreen.analysis.independent.analyze_theta:main"
tfs-summarize-posteriors = "tfscreen.analysis.hierarchical.summarize_posteriors:main"