-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpyproject.toml
More file actions
114 lines (102 loc) · 3.31 KB
/
Copy pathpyproject.toml
File metadata and controls
114 lines (102 loc) · 3.31 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
[build-system]
requires = ["setuptools>=77", "setuptools_scm>=8", "wheel"]
build-backend = "setuptools.build_meta"
[project]
authors = [
{name = "NMRlipids Open Collaboration", email = "databank@nmrlipids.fi"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Shells",
]
description = "FAIRMD Lipids project (formerly NMRlipids) contains the core functionality for managing and accessing the Database."
dynamic = ["version"]
keywords = [
"Science",
"Molecular Dynamics",
"Membranes",
]
license = "GPL-3.0-or-later"
# maintainers = [] TODO
name = "fairmd-lipids"
readme = "README.md"
dependencies = [
"buildh>=1.6.1",
"MDAnalysis>=2.7.0,<2.10",
"maicos>=0.11.2,<0.12",
"numpy>=2.0",
"pandas>=2.0.0",
"PyYAML>=6.0.0",
"tqdm>=4.5.0",
"periodictable>=1.5.0",
"Deprecated",
"requests",
"scipy",
"jsonschema",
"natsort",
]
requires-python = ">=3.10,<3.14"
[project.optional-dependencies]
rdkit = ["rdkit>=2023"]
parallel = ["joblib"]
[project.urls]
homepage = "https://FAIRMD_lipids.nmrlipids.fi"
documentation = "https://databank.readthedocs.io/"
repository = "https://github.com/NMRLipids/FAIRMD_lipids"
# changelog = ""
issues = "https://github.com/NMRLipids/FAIRMD_lipids/issues"
[project.scripts]
fmdl_add_simulation = "fairmd.lipids.bin.add_simulation:add_simulation"
fmdl_compute_databank = "fairmd.lipids.bin.compute_databank:compute_databank"
fmdl_evaluate_quality = "fairmd.lipids.bin.evaluate_quality:evaluate_quality"
fmdl_make_ranking = "fairmd.lipids.bin.make_ranking:make_ranking"
fmdl_match_experiments = "fairmd.lipids.bin.match_experiments:match_experiments"
fmdl_initialize_data = "fairmd.lipids.bin.initialize_data:initialize_data"
[tool.check-manifest]
ignore = ["src/fairmd/lipids/_version.py"]
[tool.pytest.ini_options]
testpaths = "tests"
addopts = [
"-ra",
"--cov=fairmd.lipids",
"--cov-append",
"--cov-report=",
"--import-mode=append",
]
markers = [
"sim1: toy-database for computing properties from scratch",
"sim2: toy-database with pre-computed properties for API tests",
"adddata: for AddData.py standalone script testing",
"nodata: test auxilary functions not related to Data",
"rdkit: tests features requiring RDKit installation",
"all: run all tests",
"min: run tests not requiring GROMACS installation",
"network: tests that require live internet access to external APIs",
]
[tool.ruff]
target-version = "py310"
# Set the maximum line length to 120
line-length = 120
exclude = ["src/fairmd/lipids/_version.py"]
[tool.ruff.lint]
select = ["E", "F", "B", "I"]
extend-select = ["E501"]
ignore = []
[tool.ruff.lint.per-file-ignores]
# TODO: check and renable these
"**/{tests}/*" = ["D", "E", "F", "B", "I"]
[tool.ruff.lint.pydocstyle]
convention = "pep257"
[tool.setuptools_scm]
version_file = "src/fairmd/lipids/_version.py"
[tool.setuptools.package-data]
"fairmd.lipids.data" = ["*"]