-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
48 lines (41 loc) · 1.49 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
[tool.poetry]
name = "fretlabel"
version = "0.2.0"
description = "PyMOL plugin to interactively label nucleic acids with fluorophores in silico"
authors = [
"Fabio Steffen <fabio.steffen@chem.uzh.ch>",
"Roland K.O. Sigel <roland.sigel@chem.uzh.ch>",
"Richard Börner <richard.boerner@hs-mittweida.de>"]
maintainers = ["Fabio Steffen <fabio.steffen@chem.uzh.ch>"]
license = "GPL-3.0-or-later"
readme = "README.md"
homepage = "https://rna-fretools.github.io/"
repository = "https://github.com/RNA-FRETools/fretlabel"
documentation = "https://rna-fretools.github.io/fretlabel/"
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"
]
include = ["CHANGELOG.md"]
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
pandas = "^1.4.3"
biopandas = "^0.4.1"
pytest = "^7.1.2"
[tool.poetry.dev-dependencies]
[tool.poetry.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"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120