forked from Jonbroad15/nanomix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
30 lines (26 loc) · 1.02 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
[build-system]
requires = ["maturin>=0.14,<0.15"]
build-backend = "maturin"
[project]
name = "nanomix"
version = "0.1.1"
description = "Methods for cell type deconvolution from Oxford Nanopore methylation calling"
readme = "README.md"
keywords = ["nanopore", "methylation", "deconvolution"]
authors = [ { name = "Jonathan Broadbent", email = "[email protected]" },
{ name = "Jared Simpson", email = "[email protected]" } ]
maintainers = [ { name = "Jonathan Broadbent", email = "[email protected]" } ]
dependencies = ["pandas~=1.5.2", "pyranges==0.0.120", "numpy~=1.24.1", "scipy~=1.10.0", "matplotlib", "ray"]
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[projects.urls]
repository = "https://github.com/simpsonlab/nanomix"
[project.scripts]
nanomix = "nanomix:main"
[tool.maturin]
include = ["README.md", "LICENSE", "atlases/*"]
python-source = "python"