-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
57 lines (51 loc) · 2.06 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 = "ailist"
version = "2.1.6"
description = "Python package for Augmented Interval List"
authors = ["Kyle S. Smith <[email protected]>"]
maintainers = ["Kyle S. Smith <[email protected]>"]
repository = "https://github.com/kylessmith/ailist"
documentation = "https://www.biosciencestack.com/static/ailist/docs/index.html"
keywords = ["cython", "interval", "ailist", "c"]
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 = "ailist" }]
include = ["ailist/*.pyx", "ailist/*.pxd", "ailist/src/*.h", "ailist/src/*.c", "ailist/**/*.so"]
[tool.poetry.dependencies]
python = "^3.10"
numpy = "^1.24.2"
cython = "^3.0.0"
pandas = "^2.0.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
[build-system]
requires = ["poetry-core>=1.0.0",
"cython>=3.0.0",
"numpy>=1.24.2",
"pandas>=2.0.0",
"setuptools>=65.5.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']