forked from Jhsmit/PyHDX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
79 lines (68 loc) · 1.61 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
73
74
75
76
77
78
79
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "pyhdx"
description = "Derive ΔG for single residues from HDX-MS data"
authors = [
{ name = "Jochem Smit", email = "[email protected]" },
]
license = "MIT"
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
]
dependencies = [
"torch",
"hdxrate",
"numpy",
"matplotlib",
"pandas",
"scikit-image",
"scipy",
"symfit",
"tqdm",
"typer",
"dask",
"distributed",
"packaging",
"param",
"pyyaml",
"omegaconf",
"hdxms-datasets>=0.1.3",
]
dynamic = ["version"]
[project.optional-dependencies]
web = ["panel<1.0.0", "bokeh", "holoviews", "colorcet", "hvplot", "proplot", "param<2"]
pdf = ["pylatex", "proplot"]
docs = ["mkdocs", "mkdocstrings[python]", "mkdocs-material", "pygments", "mkdocs-gen-files", "mkdocs-literate-nav", "mkdocs-jupyter"]
dev = ["black[jupyter]"]
test = [
"pytest>=7.2.0",
]
[project.scripts]
pyhdx = 'pyhdx.cli:app'
[project.urls]
Source = "https://github.com/Jhsmit/PyHDX/"
Documentation = "https://pyhdx.readthedocs.io/en/stable/"
[tool.hatch.build]
exclude = [
"_versioneer.py"
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "pyhdx/_version.py"
[tool.flake8]
max-line-length = 100
ignore = "D203"
exclude = [".git", "__pycache__", "build", "dist", "docs"]
max-complexity = 10
[tool.black]
line-length = 100
[tool.ruff]
line-length = 100
target-version = "py39"