-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
95 lines (80 loc) · 2.24 KB
/
Copy pathpyproject.toml
File metadata and controls
95 lines (80 loc) · 2.24 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[build-system]
requires=[
"setuptools>=77.0.0",
"versioningit",
]
build-backend = "setuptools.build_meta"
[project.urls]
"Hompage" = "https://github.com/ale94mleon/BindFlow"
"Discussions" = "https://github.com/ale94mleon/BindFlow/discussions"
"Documentation" = "https://BindFlow.readthedocs.io/en/latest/"
"Issues" = "https://github.com/ale94mleon/BindFlow/issues"
[project]
name = "bindflow"
dynamic = ["version"]
description = "A snakemake-based workflow for binding free energy calculations using GROMACS."
readme = "README.rst"
license-files = ["LICENSE"]
authors=[
{name="Alejandro Martínez León", email="ale94mleon@gmail.com"},
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry"
]
keywords = [
"science",
"chemistry",
"biology",
"drug-design"
]
requires-python = ">= 3.8 , < 3.11"
dependencies = [
"alchemlyb >= 2.0.0",
"pymbar >= 4.0.1",
"numpy",
"pandas",
"mdanalysis",
"pyyaml",
]
[project.optional-dependencies]
dev = ["pytest"]
[tool.versioningit]
default-version = "1+unknown"
[tool.versioningit.format]
distance = "{base_version}.post{distance}"
dirty = "{base_version}.post{distance}.dev0"
distance-dirty = "{base_version}.post{distance}.dev0"
[tool.versioningit.vcs]
method = "git"
match = ["*"]
default-tag = "0.0.0"
[tool.versioningit.write]
file = "src/bindflow/_version.py"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
bindflow = [
"data/gmx_ff/*.tar.gz",
"data/gmx_water_models/*/*.itp",
"data/gmx_water_models/*/*.dat",
"data/gmx_water_models/*.yml",
"data/gmx_water_models/configurations/*.gro",
"data/ci_systems/**/*.yml",
"data/ci_systems/**/*.tar.gz",
"mdp/templates/**/*.mdp",
"mmpbsa_in/templates/*.in",
"rules/**/*.smk",
"rules/**/Snakefile"
]
[project.scripts]
bindflow = "bindflow.cli:main"