forked from Jhsmit/PyHDX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
92 lines (82 loc) · 1.58 KB
/
setup.cfg
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
80
81
82
83
84
85
86
87
88
89
90
91
92
[metadata]
name = PyHDX
author = Jochem H. Smit
author_email = jhsmit@gmail.com
maintainer = Jochem H. Smit
maintainer_email = jhsmit@gmail.com
url = https://github.com/Jhsmit/PyHDX
license = MIT
license_files = LICENSE
description = Derive ΔG for single residues from HDX-MS data
long_description = file: DESCRIPTION.rst
summary = Derive ΔG for single residues from HDX-MS data
keywords = HDX-MS
classifier =
Development Status :: 4 - Beta
Intended Audience :: Science/Research
Natural Language :: English
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
[options]
install_requires =
hdxrate>=0.2.0
numpy
matplotlib==3.4.3
pandas
scikit-image
scipy
symfit>=0.5.5
torch
tqdm
typer
dask
distributed
packaging
param
pyyaml
omegaconf>=2.2.2
python_requires =
>=3.8
[options.entry_points]
console_scripts =
pyhdx = pyhdx.cli:app
[options.extras_require]
web =
panel>=0.13.0
bokeh
holoviews
colorcet >= 3.0.0
hvplot
proplot==0.9.3
pdf =
pylatex
proplot==0.9.3
docs =
sphinx>=4.4.0
ipykernel
nbsphinx
furo
sphinx-copybutton
sphinx-autodoc-typehints
sphinx-autobuild
sphinxcontrib-bibtex
pymol =
pymol-open-source
dev =
bandit
black
invoke
mypy
pylint
pytest
flake8
[versioneer]
VCS = git
style = pep440-pre
versionfile_source = pyhdx/_version.py
versionfile_build = pyhdx/_version.py
tag_prefix = ''
[flake8]
ignore = D203
exclude = .git,__pycache__,docs/conf.py,dev,build,dist
max-complexity = 10