-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (63 loc) · 1.86 KB
/
pyproject.toml
File metadata and controls
71 lines (63 loc) · 1.86 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
[project]
name = "fretlabel"
version = "0.2.1"
description = "PyMOL plugin to interactively label nucleic acids with fluorophores in silico"
authors = [
{ name = "Fabio Steffen", email = "fabio.steffen@chem.uzh.ch" },
{ name = "Roland K.O. Sigel", email = "roland.sigel@chem.uzh.ch" },
{ name = "Richard Börner", email = "richard.boerner@hs-mittweida.de" }
]
license = { text ="GPL-3.0-or-later" }
readme = "README.md"
keywords = ["FRET", "single-molecule", "molecular dynamics", "PDB", "fluorescence labeling", "AMBERDYES"]
classifiers = [
"Programming Language :: Python",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Framework :: Jupyter",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
requires-python = ">=3.10"
dependencies = [
"pandas",
"biopandas"
]
[project.optional-dependencies]
dev = [
"bumpver",
]
docs = [
"lmfit",
"fretraj",
"jupyter-book",
"ipywidgets",
"matplotlib",
"seaborn"
]
[project.urls]
Repository = "https://github.com/RNA-FRETools/fretlabel"
Documentation = "https://rna-fretools.github.io/fretlabel/"
Issues = "https://rna-fretools.github.io/fretlabel/issues"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 120
[tool.bumpver]
current_version = "0.2.1"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'version = "{version}"$',
]
[project.scripts]
fretlabel = "fretlabel.console:fretlabel"
solvate = "fretlabel.console:solvate"
single_run = "fretlabel.console:single_run"
continue_run = "fretlabel.console:continue_run"
multi_run = "fretlabel.console:multi_run"
resp_fit = "fretlabel.console:resp_fit"