-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
109 lines (100 loc) · 2.87 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
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
[build-system]
# These are the assumed default build requirements from pip:
# https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mdacli"
version = "0.1.32"
description = "A command line client for MDAnalysis Analysis classes."
authors = [
{name = "MDAnalysis Development Team and contributors", email = "[email protected]"},
]
readme = "README.rst"
requires-python = ">=3.9"
keywords = [
"python",
"cli",
"science",
"command-line",
"molecular-dynamics",
"computational-chemistry",
"molecular-dynamics-simulation",
"command-line-tool",
"trajectory-analysis mdanalysis",
]
license = {text = "GPL-3.0-or-later"}
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Shells",
]
dependencies = [
"MDAnalysis>=2.1.0",
"threadpoolctl",
]
[project.urls]
homepage = "https://mdacli.mdanalysis.org"
documentation = "https://mdacli.mdanalysis.org"
repository = "https://github.com/MDAnalysis/mdacli"
changelog = "https://github.com/MDAnalysis/mdacli/blob/main/docs/CHANGELOG.rst"
issues = "https://github.com/MDAnalysis/mdacli/issues/"
discord = "https://discord.com/channels/807348386012987462"
twitter = "https://twitter.com/mdanalysis"
blog = "https://www.mdanalysis.org/blog"
user_group = " https://groups.google.com/g/mdnalysis-discussion"
[project.scripts]
mda = "mdacli.__main__:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.flake8]
max_line_length = 80
hang-closing = true
ignore = [
"W293",
"W503",
"D412",
"D105",
]
docstring-convention = "numpy"
[tool.isort]
line_length = 80
indent = 4
multi_line_output = 8
include_trailing_comma = true
lines_after_imports = 2
sections = "FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
known_first_party = "mdacli"
known_third_party = [
"MDAnalysis",
"hypothesis",
"matplotlib",
"numpy",
"pytest",
]
[tool.pytest.ini_options]
addopts = "-p pytest_cov"
python_files = [
"test_*.py",
"*_test.py",
"tests.py",
]
testpaths = [
"tests"
]