-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·93 lines (86 loc) · 1.92 KB
/
pyproject.toml
File metadata and controls
executable file
·93 lines (86 loc) · 1.92 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[project]
name = "chrov"
description = "Chromosome Visualization library in Python."
authors = [
{ name = "rraadd88", email = "rohanadandage@gmail.com" }
]
urls = { "Homepage" = "http://github.com/rraadd88/chrov" }
version = "0.0.4"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
license = "GPL-3.0-or-later"
readme = "README.md"
dependencies = [
"argh>=0.31.3",
"bioservices>=1.12.1",
"fastcore==1.7.10",
# "ipykernel>=6.29.5",
# "jupyter>=1.1.1",
# "mudata>=0.3.1",
# "networkx>=3.4.2",
# "numpy<2",
# "omegaconf>=2.3.0",
# "papermill>=2.6.0",
# "pingouin==0.5.5",
# "pyarrow>=19.0.1",
# "roux",
# "sluf>=0.1.0",
# "statsmodels==0.14.2",
"matplotlib>=3.10.1",
"nbdev==2.3.31",
"numpy<2",
"pandas>=2",
"pybiomart==0.2.0",
"pyensembl",
"pyranges>=0.1.4",
"roux",
"scipy>=1.15.2",
"seaborn>=0.13.2",
"setuptools>=77.0.3",
]
[dependency-groups]
dev = [
"tox",
"tox-gh-actions",
"pytest",
"jupyter",
"ipywidgets",
"ipykernel",
"black",
"coveralls == 3.*",
"flake8",
"isort",
"pytest-cov == 2.*",
"testbook",
"papermill",
# "regex",
# lazydocs",
]
lint = [
"ruff"
]
[tool.uv.sources]
roux = { git = "https://github.com/rraadd88/roux.git", rev = "master" }
pyensembl = { git = "https://github.com/rraadd88/pyensembl.git", rev = "patch-2" }
[project.scripts]
chrov = "chrov.run:parser.dispatch"
[tool.black]
experimental-string-processing = true
line-length = 120
skip-string-normalization = true
[tool.isort]
profile = "black"
[tool.setuptools]
package-dir = { "chrov" = "modules" }
packages = ["chrov"]
[tool.setuptools.package-data]
chrov = [
"modules/*.py",
# "notebooks*/*.ipynb"
]