-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
executable file
·126 lines (110 loc) · 2.81 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
[build-system]
requires = [
"setuptools >=61.2",
"versioningit",
]
build-backend = "setuptools.build_meta"
[project]
name = "zarrtraj"
description = "This is a kit that provides the ability to read and write trajectory data in the Zarr file format"
license = {file = "LICENSE" }
authors = [
{name = "Lawson Woods", email = "ljwoods2@asu.edu"},
]
maintainers = [
{name = "Lawson Woods", email = "ljwoods2@asu.edu"},
]
readme = "README.md"
requires-python = ">=3.10.0"
dependencies = [
"MDAnalysis>=2.1.0",
# Earliest zarr version where BaseStore has close() method
"zarr>=2.11.0",
# Earliest version with preserved_linked_dsets
"kerchunk>=0.2.6",
# Earliest version with visititems_links
"h5py>=3.11.0",
"s3fs>=2024.3.0",
"gcsfs>=2024.6.1",
"adlfs>=2024.7.0",
]
keywords = [
"molecular simulations",
]
dynamic = [
"version",
]
[project.optional-dependencies]
test = [
"pytest>=7.4.0",
"pytest-xdist>=3.5.0",
"pytest-cov>=4.1.0",
"MDAnalysisTests>=2.1.0",
"moto[server]>=5.0.3",
"pip",
"codecov",
]
doc = [
"sphinx",
"sphinx_rtd_theme",
]
# [project.urls]
# source = "https://github.com/ljwoods2/zarrtraj"
# documentation = "https://zarrtraj.readthedocs.io"
[tool.setuptools]
packages = ["zarrtraj"]
# Installs tests datafiles
[tool.setuptools.package-data]
"zarrtraj" = ["data/*"]
[tool.pytest.ini_options]
minversion = "7.4.0"
testpaths = [
"zarrtraj/tests",
]
[tool.black]
line-length = 80
[tool.versioningit]
default-version = "1+unknown"
[tool.versioningit.vcs]
method = "git"
match = ["v*"]
[tool.versioningit.format]
distance = "{base_version}+{distance}.{vcs}{rev}"
dirty = "{base_version}+{distance}.{vcs}{rev}.dirty"
distance-dirty = "{base_version}+{distance}.{vcs}{rev}.dirty"
[tool.coverage.run]
omit = [
# Omit the tests
"*/tests/*",
]
[tool.coverage.report]
exclude_also = [
"if TYPE_CHECKING:",
]
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 80
[tool.yapf]
COLUMN_LIMIT = 80
INDENT_WIDTH = 4
USE_TABS = false
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Software Development :: Libraries :: Python Modules',
]