-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (55 loc) · 2.17 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
[tool.poetry]
name = "hmmCNV"
version = "1.1.6"
description = "Python package for Copy-Number Variation calling"
authors = ["Kyle S. Smith <[email protected]>"]
maintainers = ["Kyle S. Smith <[email protected]>"]
repository = "https://github.com/kylessmith/hmmCNV"
documentation = "https://www.biosciencestack.com/static/hmmCNV/docs/index.html"
keywords = ["variant", "CNV", "copy", "number"]
readme = 'README.md'
license = "GPL-2.0-or-later"
classifiers = [ "Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: POSIX :: Linux",
"Programming Language :: Cython",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
packages = [{ include = "hmmCNV" }]
include = ["hmmCNV/hmm/*.pyx", "hmmCNV/hmm/*.pxd", "hmmCNV/hmm/*.h", "hmmCNV/hmm/*.c", "hmmCNV/**/*.so"]
[tool.poetry.dependencies]
python = ">=3.10"
numpy = ">=1.23.5"
cython = "^3.0.0"
pandas = "^2.0.0"
ailist = "^2.1.3"
linear_segment = "^1.2.1"
intervalframe = "^1.1.6"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
[build-system]
requires = ["poetry-core>=1.0.0",
"cython>=3.0.0",
"numpy>=1.23.5",
"pandas>=2.0.0",
"setuptools>=65.5.0",
"ailist>=2.1.3",]
build-backend = "poetry.core.masonry.api"
[tool.poetry.build]
generate-setup-file = false
script = "build.py"
[tool.cibuildwheel]
skip = "cp36-* cp37-* cp38-* cp39-* pp37-* pp38-* *-manylinux_i686 *_ppc64le *_s390x *-musllinux*"
build-verbosity = "3"
[tool.cython-lint]
max-line-length = 100
ignore = ['W191','E265','E303','E101','E128']