-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
72 lines (64 loc) · 1.52 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
62
63
64
65
66
67
68
69
70
71
72
[build-system]
requires = [
"setuptools>=42",
"wheel",
"pybind11~=2.11.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "prospr"
authors = [
{name = "okkevaneck", email = "[email protected]"},
]
dynamic = ["version"]
description = "A toolbox for protein folding with Python."
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
keywords = [
"prospr",
"protein",
"structure",
"prediction",
"toolbox",
"python",
"c++",
"extension",
"pypi",
"package",
]
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
"Topic :: Education",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
"matplotlib==3.7.2",
"pandas==2.0.3",
"seaborn==0.12.2",
]
[project.urls]
homepage = "https://github.com/okkevaneck/prospr"
documentation = "https://prospr.readthedocs.io"
repository = "https://github.com/okkevaneck/prospr"
[tool.setuptools]
packages = ["prospr"]
package-dir = {"prospr" = "prospr"}
zip-safe = false
platforms = ["Linux", "macOS", "Windows"]
[tool.setuptools.package-data]
prospr = ["data/*/*.csv", "core/src/*"]
[tool.setuptools.dynamic]
version = {attr = "prospr._version.__version__"}
[tool.black]
line-length = 79
[tool.pytest]
minversion = 7.1
[tool.pytest.ini_options]
pythonpath = [
".",
]