forked from LBC-LNBio/pyKVFinder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
111 lines (99 loc) · 3.27 KB
/
Copy pathpyproject.toml
File metadata and controls
111 lines (99 loc) · 3.27 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
[build-system]
requires = [
"setuptools>=62.0",
"wheel>=0.37.1",
"Cython>=0.29",
"numpy>=1.21.5",
]
build-backend = "setuptools.build_meta"
[project]
name = "pyKVFinder"
description = "Python package to detect and characterize cavities in biomolecular structures"
authors = [
{ name = "João Victor da Silva Guerra", email = "jvsguerra@gmail.com" },
{ name = "Helder Veras Ribeiro Filho" },
{ name = "Luiz Fernando Giolo Alves" },
{ name = "Gabriel Ernesto Jara" },
{ name = "Leandro Oliveira Bortot" },
{ name = "José Geraldo de Carvalho Pereira" },
{ name = "Paulo Sergio Lopes-de-Oliveira" },
]
maintainers = [
{ name = "João Victor da Silva Guerra", email = "jvsguerra@gmail.com" },
]
license = { file = "LICENSE.txt" }
readme = { file = "README.rst", content-type = "text/x-rst" }
requires-python = ">=3.9"
keywords = [
"structural biology",
"proteins",
"biomolecules",
"cavity detection",
"cavity characterization",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
'Programming Language :: C',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
'Operating System :: Microsoft :: Windows',
'Operating System :: Unix',
'Operating System :: MacOS',
]
dependencies = [
"toml==0.10.2",
"numpy==1.26.4",
"matplotlib==3.8.3",
"plotly==5.20.0",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = ["pytest==8.1.1", "pytest-cov==4.1.0", "black==24.3.0", "flake8==7.0.0"]
[project.urls]
homepage = "https://github.com/LBC-LNBio/pyKVFinder/"
documentation = "https://lbc-lnbio.github.io/pyKVFinder/"
issues = "https://github.com/LBC-LNBio/pyKVFinder/issues"
[project.scripts]
pyKVFinder = "pyKVFinder.main:cli"
[tool.setuptools]
packages = ["pyKVFinder", "pyKVFinder.data", "pyKVFinder.data.tests"]
py-modules = ["_pyKVFinder"]
include-package-data = true
[tool.setuptools.dynamic]
version = { attr = "pyKVFinder.__version__" }
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.coverage.run]
omit = ["pyKVFinder/argparser.py", "pyKVFinder/__init__.py"]
[tool.cibuildwheel]
test-requires = "pytest"
test-command = "pytest {project}/tests/integration -v"
before-build = [
"python3 -m pip install --upgrade pip",
"pip3 install certifi",
"git clean -fxd build",
]
build = ["cp39-*", "cp310-*", "cp311-*", "cp312-*"]
[tool.cibuildwheel.linux]
archs = ["native"]
[tool.cibuildwheel.macos]
environment = { CC = "/usr/local/bin/gcc-9", MACOS_DEVELOPMENT_TARGET = "10.9" }
before-build = ["brew install gcc@9"]
archs = ["native"]
repair-wheel-command = ""
test-skip = "*-macosx_arm64"
[tool.cibuildwheel.windows]
archs = ["native"]