-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
108 lines (100 loc) · 2.43 KB
/
pyproject.toml
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "smftools"
description = "Single Molecule Footprinting Analysis in Python."
requires-python = ">=3.9"
license = "MIT"
authors = [
{name = "Joseph McKenna"}
]
maintainers = [
{name = "Joseph McKenna", email = "jkmckenna@berkeley.edu"}
]
keywords = [
"single-molecule-footprinting",
"chromatin-accessibility",
"protein-dna-binding",
"nanopore",
"single-locus",
"anndata",
"machine-learning"
]
readme = "README.md"
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Visualization"
]
dependencies = [
"anndata>=0.10.0",
"biopython>=1.79",
"Cython>=0.29.28",
"networkx>=3.2",
"numpy>=1.22.0,<2",
"pandas>=1.4.2",
"pod5>=0.1.21",
"pomegranate==0.14.8",
"pyfaidx>=0.8.0",
"pysam>=0.19.1",
"scanpy>=1.9",
"scikit-learn>=1.0.2",
"scipy>=1.7.3",
"seaborn>=0.11",
"torch>=1.9.0",
"tqdm"
]
dynamic = ["version"]
[project.urls]
Source = "https://github.com/jkmckenna/smftools"
Documentation = "https://smftools.readthedocs.io/"
[project.optional-dependencies]
tests = [
"pytest",
"pytest-cov"
]
docs = [
"sphinx>=7",
"sphinx-book-theme>=1.1.0",
"sphinx-autodoc-typehints>=1.25.2",
"myst-parser>=2",
"myst-nb>=1",
"sphinx-design",
"readthedocs-sphinx-search",
"sphinxext-opengraph",
"sphinx-copybutton",
"nbsphinx>=0.9",
"ipython>=7.20",
"matplotlib!=3.6.1",
"sphinxcontrib-bibtex",
"setuptools"
]
[tool.hatch.build.targets.wheel]
packages = ["src/smftools"]
[tool.hatch.version]
path = "src/smftools/_version.py"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
"--strict-markers",
"--doctest-modules",
"--pyargs",
]
testpaths = ["tests"]
pythonpath = ["src"]
xfail_strict = true
[tool.coverage.run]
source = ["smftools"]
omit = ["tests/*"]