-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
58 lines (53 loc) · 1.62 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
[tool.poetry]
authors = ["Kaiyuan Zhu <kaiyuan-zhu@ucsd.edu>", "Matt Jones <mgjones@stanford.edu>", "Jens Luebeck <jluebeck@ucsd.edu>"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only", # Specify Python 3 only
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
description = "Amplicon reconstruction from long-read data"
homepage = "https://github.com/AmpliconSuite/CoRAL"
license = "MIT"
name = "CoRAL"
readme = 'README.md'
repository = "https://github.com/AmpliconSuite/CoRAL"
version = "1.0.0"
packages = [
{include = "src"},
]
[tool.poetry.dependencies]
cvxopt = "*"
cnvkit = "*"
gurobipy = "*"
intervaltree = "*"
matplotlib = "*"
pandas = {version = "*", python=">=3.7,<4.0"}
pysam = {version = ">0.1.7"}
pytest = {version = ">=4.4", optional = true}
python = ">=3.7,<4.0"
scanpydoc = {version = ">=0.5", optional = true}
typing-extensions = ">=3.7.4"
typing_extensions = {version = "*", python = "<3.9", optional = true}
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["setuptools", "poetry-core>=1.0.7", "Cython", "pip>=22.0.0"]
[tool.poetry.extras]
dev = ["black", "pytest", "flake8", "codecov", "jupyter", "pre-commit", "isort"]
docs = [
"sphinx",
"scanpydoc",
"nbsphinx",
"nbsphinx-link",
"ipython",
"pydata-sphinx-theme",
"typing_extensions",
"sphinx-autodoc-typehints",
"sphinx_gallery",
]
[tool.poetry.scripts]
CoRAL = "src.CoRAL:main"