-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
54 lines (50 loc) · 1.21 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
[project]
name = "fastpdb"
version = "1.3.1"
description = "A high performance drop-in replacement for Biotite's PDBFile."
readme = "README.rst"
requires-python = ">=3.7"
license = {file = "LICENSE"}
keywords = ["pdb-files"]
authors = [
{name = "Patrick Kunzmann"},
{name = "Nick Coish"}
]
maintainers = [
{name = "Patrick Kunzmann"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
"biotite >= 0.39",
]
[project.optional-dependencies]
# development dependency groups
test = [
"pytest",
"pytest-codspeed",
]
plot = [
"matplotlib",
]
[project.urls]
homepage = "https://github.com/biotite-dev/fastpdb"
repository = "https://github.com/biotite-dev/fastpdb"
[tool.maturin]
exclude = ["*.svg", "tests/"]
python-source = "python-src"
[build-system]
requires = [
"maturin >=1.0,<2.0",
"numpy == 1.26"
]
build-backend = "maturin"