-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (60 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
68 lines (60 loc) · 1.46 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "MultiMM"
version = "2.0.2"
description = "A tool for chromatin modeling from nucleosomes to chromosomal territories."
readme = "README.md"
authors = [
{ name = "Sebastian Korsak", email = "s.korsak@datascience.edu.pl" }
]
license = { text = "GNU General Public License v3.0" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
]
requires-python = ">=3.10"
dependencies = [
"numpy>=1.26.4",
"scipy>=1.11",
"pandas>=2.2.2",
"argparse>=1.4.0",
"matplotlib>=3.8.2",
"mdtraj>=1.9.9",
"seaborn>=0.12.2",
"scikit-learn>=1.3.0",
"configparser>=6.0.1",
"typing-extensions>=4.7.1",
"pyBigWig>=0.3.22",
"hilbertcurve>=2.0.5",
"tqdm>=4.65.2",
"pyvista[all]",
"OpenMM>=8.5.1",
"pydantic>=2.0.0",
]
[project.optional-dependencies]
dev = [
"ruff",
"black",
"isort",
"docformatter",
"pytest",
]
[project.scripts]
MultiMM = "multimm.run:main"
[tool.setuptools.packages.find]
where = ["src"]
include = ["multimm", "multimm.*"]
[tool.setuptools.package-data]
multimm = ["forcefields/*", "data/*"]
[tool.black]
line-length = 120
target-version = ['py310', 'py311', 'py312']
[tool.isort]
profile = "black"
line_length = 120
[tool.ruff]
line-length = 120
target-version = "py310"