-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
61 lines (57 loc) · 1.77 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
58
59
60
61
[build-system]
requires = [
"setuptools>=62.0",
"wheel>=0.37.1",
"Cython>=0.29",
"numpy>=1.21.5",
]
build-backend = "setuptools.build_meta"
[project]
name = "SERD"
description = "A Python package to detect solvent-exposed residues of a target biomolecule."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10, <4"
license = { file = "LICENSE" }
authors = [
{ name = "João V. S. Guerra", email = "[email protected]" },
{ name = "Gabriel E. Jara" },
{ name = "José G. C. Pereira" },
{ name = "Helder V. Ribeiro-Filho" },
]
maintainers = [{ name = "João V. S. Guerra", email = "[email protected]" }]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"networkx~=3.4.2",
"numpy~=2.1.2",
"pyKVFinder~=0.7.1",
"scipy~=1.14.1",
]
dynamic = ["version"]
keywords = [
"structural biology",
"proteins",
"biomolecular surface",
"solvent-exposed residues",
]
[project.urls]
homepage = "https://github.com/LBC-LNBio/SERD"
documentation = "https://lbc-lnbio.github.io/SERD/ "
issues = "https://github.com/LBC-LNBio/SERD/issues"
[tool.setuptools]
packages = ["SERD"]
include-package-data = true
py-modules = ["_SERD"]
[tool.setuptools.dynamic]
version = { attr = "SERD.__version__" }