-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (69 loc) · 1.7 KB
/
pyproject.toml
File metadata and controls
78 lines (69 loc) · 1.7 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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "Colbuilder"
version = "2.0.0"
description = "Collagen fibrils from amino acid sequences"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "Apache-2.0"}
authors = [
{name = "MPIP-Grater Group", email = "matthias.brosz@h-its.org"},
]
keywords = ["collagen", "molecular", "simulation", "bioinformatics"]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: UNIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"numpy==1.25",
"vermouth==0.9.1",
"pandas==2.2.2",
"biopython==1.84",
"scikit-learn",
"h5py",
"libnetcdf",
"threadpoolctl",
"PyYAML",
"click",
"pydantic>=2.0",
"tqdm",
"asyncio",
"colorama>=0.4.4",
"click>=8.0.0",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"flake8",
"black",
"isort",
"mypy",
]
[project.scripts]
colbuilder = "colbuilder.colbuilder:main"
pdb2fasta = "colbuilder.utils.pdb2fasta:main"
[project.urls]
Homepage = "https://github.com/graeter-group/colbuilder"
Repository = "https://github.com/graeter-group/colbuilder"
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
colbuilder = [
"data/**/*",
"data/*",
]
[tool.flake8]
max-line-length = 100
exclude = [".git", "__pycache__", "docs/source/conf.py", "old", "build", "dist"]
[tool.mypy]
ignore_missing_imports = true