-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (68 loc) · 1.7 KB
/
Copy pathpyproject.toml
File metadata and controls
76 lines (68 loc) · 1.7 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
[project]
name = "bbconf"
version = "0.14.12"
description = "Configuration and data management tool for BEDbase"
readme = "README.md"
license = "BSD-2-Clause"
requires-python = ">=3.10"
authors = [
{ name = "Oleksandr Khoroshevskyi", email = "bnt4me@virginia.edu" },
]
keywords = ["bioinformatics", "genomics", "BED", "configuration"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
"yacman >= 1.0.0",
"sqlalchemy >= 2.0.0",
"gtars >= 0.5.3",
"geniml[ml] >= 0.8.4",
"psycopg >= 3.1.15",
"coloredlogs",
"pydantic >= 2.9.0",
"botocore >= 1.34.0, < 1.36.0",
"boto3 >= 1.34.54, < 1.36.0",
"pephubclient >= 0.4.5",
"sqlalchemy_schemadisplay",
"zarr < 3.0.0",
"pyyaml >= 6.0.1",
"s3fs >= 2024.3.1",
"pandas>2.0.0, < 3.0.0",
"pybiocfilecache == 0.6.1",
"umap-learn >= 0.5.8",
"qdrant_client >= 1.16.1",
"setuptools < 70.0.0",
]
[project.urls]
Homepage = "https://github.com/databio/bbconf"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"pytest-mock",
"python-dotenv",
"coverage",
"smokeshow",
]
dev = [
"ruff",
]
[tool.pytest.ini_options]
addopts = "-rfE"
testpaths = ["tests"]
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["F403", "F405", "E501"]
exclude = ["manual_testing.py"]
[tool.ruff.lint.isort]
known-first-party = ["bbconf"]