-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
70 lines (64 loc) · 2.39 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "bio2byte.mdutils"
description = "Templates and analysis scripts for MD simulations of post-translationally modified peptides"
dynamic = ["version"]
readme = {file = "README.md", content-type = "text/markdown"}
license = {text = "MIT license"}
authors = [
{name = "David Bickel", email = "[email protected]"},
]
maintainers = [
{name = "David Bickel", email = "[email protected]"},
{name = "Wim Vranken", email = "[email protected]"},
]
requires-python = ">= 3.8"
dependencies = [
"constava >= 1.0",
"MDAnalysis",
"numpy",
"pandas",
"panedr",
"pytrr",
"tqdm",
"bio2byte-peptidebuilder@git+https://github.com/Bio2Byte/bio2byte-peptidebuilder",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
]
keywords = ["Molecular dynamics", "MD"]
[project.scripts]
mdutils-process-trajectory = "bio2byte.mdutils.exec.exec:process_trajectories"
mdutils-hbonds-wrapper = "bio2byte.mdutils.exec.exec:hbonds_wrapper"
mdutils-hbonds = "bio2byte.mdutils.exec.mediated_hbonds:main"
mdutils-centroid = "bio2byte.mdutils.exec.central_structure:main"
mdutils-dihedrals = "bio2byte.mdutils.exec.dihedrals:main"
mdutils-dihedral-pca = "bio2byte.mdutils.exec.dihedral_pca:main"
mdutils-replica-correlation = "bio2byte.mdutils.exec.replica_correlation:main"
mdutils-ionic-contacts = "bio2byte.mdutils.exec.ionic_contacts:main"
mdutils-protein-contacts = "bio2byte.mdutils.exec.protein_contacts:main"
mdutils-constava-wrapper = "bio2byte.mdutils.exec.constava_wrapper:main"
[project.urls]
Homepage = "https://www.bio2byte.be"
Repository = "https://github.com/Bio2Byte/mdutils"
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "bio2byte.mdutils.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
namespaces = true