forked from kylessmith/MethylVerse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (66 loc) · 2.44 KB
/
Copy pathpyproject.toml
File metadata and controls
72 lines (66 loc) · 2.44 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
[tool.poetry]
name = "MethylVerse"
version = "1.0.5"
description = "Python package for methylation data"
authors = ["Kyle S. Smith <kyle.smith@stjude.org>"]
maintainers = ["Kyle S. Smith <kyle.smith@stjude.org>"]
repository = "https://github.com/kylessmith/MethylVerse"
documentation = "https://www.biosciencestack.com/static/MethylVerse/docs/index.html"
keywords = ["WGBS", "450k", "850k", "EPIC", "methylation"]
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 = "MethylVerse" }]
include = ["MethylVerse/**/*.pyx", "MethylVerse/**/*.pxd", "MethylVerse/**/*.h", "MethylVerse/**/*.c", "MethylVerse/**/*.so"]
[tool.poetry.dependencies]
python = ">=3.10"
numpy = ">=1.23.5"
cython = "^3.0.0"
pandas = "^2.0.0"
ailist = ">=2.1.7"
linear_segment = "^1.2.1"
pysam = ">=0.22.0"
matplotlib = "^3.7.1"
bokeh = "^3.1.0"
scipy = ">=1.9.1"
statsmodels = ">=0.14.0"
seaborn = ">=0.12.2"
scikit-learn = ">=1.2.2"
scikit-network = ">=0.33.0"
joblib = ">=1.4.2"
h5py = ">=3.12.1"
onnxruntime = ">=1.20.0"
[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.7",
"pysam>=0.22.0"]
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']