-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (53 loc) · 2.01 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
[tool.poetry]
name = "intervalframe"
version = "1.1.6"
description = "Python package for interval manipulation"
authors = ["Kyle S. Smith <kyle.smith@stjude.org>"]
maintainers = ["Kyle S. Smith <kyle.smith@stjude.org>"]
repository = "https://github.com/kylessmith/intervalframe"
documentation = "https://www.biosciencestack.com/static/intervalframe/docs/index.html"
keywords = ["cython", "interval", "ailist", "frame"]
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 = "intervalframe" }]
[tool.poetry.dependencies]
python = "^3.10"
numpy = "^1.23.5"
cython = "^3.0.0"
pandas = "^2.0.0"
ailist = "^2.1.3"
tabulate = "^0.9.0"
linear_segment = "^1.1.2"
h5py = "^3.8.0"
scipy = "^1.9.1"
requests = "^2.28.2"
pyarrow = "^12.0.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>=1.5.2",
"setuptools>=65.5.0",
"ailist>=2.1.3",
]
build-backend = "poetry.core.masonry.api"
[tool.cibuildwheel]
skip = "cp36-* cp37-* cp38-* cp39-* pp37-* pp38-* *-manylinux_i686 *_ppc64le *_s390x *-musllinux*"
build-verbosity = "3"