-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
47 lines (41 loc) · 1.42 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
[build-system]
requires = ["setuptools>=74.1", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "py2bit"
version = "0.3.3"
description = "A package for accessing 2bit files using lib2bit"
authors = [
{ name = "Devon P. Ryan", email = "[email protected]" }
]
license = { text = "MIT" }
readme = "README.md"
keywords = ["bioinformatics", "2bit"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved",
"Programming Language :: C",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS"
]
[project.urls]
download = "https://github.com/deeptools/py2bit"
homepage = "https://github.com/deeptools/py2bit"
[tool.setuptools]
# Override setuptools autodiscovery algorithm
# Only include package test data/source for wheel distribution
include-package-data = true
packages = ["py2bitTest"]
# Enable version inference from scm
[tool.setuptools_scm]
# Target only minimum CPython version 3.9 on linux for wheel build
[tool.cibuildwheel]
skip = "pp* cp36-* cp37-* cp38-* *-manylinux_i686 *_ppc64le *_s390x *-musllinux_x86_64 *-musllinux_i686"
[tool.cibuildwheel.linux]
manylinux-x86_64-image = "manylinux2014"