-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
97 lines (87 loc) · 2.17 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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
[project]
name = "ChimeraX-RemoteBrowser"
version = "0.6.0"
dynamic = ["classifiers", "requires-python"]
dependencies = [
"ChimeraX-Core~=1.7.1",
"ChimeraX-ArtiaX",
"ChimeraX-OME-Zarr",
"sshfs",
"s3fs>=2024.3.1",
"qasync",
"qt-async-threads",
"fonticon-materialdesignicons7",
"zarr",
"aiobotocore",
]
authors = [
{name = "Utz H. Ermel", email = "[email protected]"},
]
description = "Browse and open files from remote storage locations."
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["remote", "cloudstorage", "visualization", "zarr"]
[project.urls]
Repository = "https://github.com/uermel/chimerax-remotebrowser.git"
Issues = "https://github.com/uermel/chimerax-remotebrowser/issues"
[project.optional-dependencies]
dev = [
"black",
"ipython",
"pre-commit",
"ruff",
]
[chimerax]
category = "General"
package = "chimerax.RemoteBrowser"
min-session-version="1"
max-session-version="1"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
]
[chimerax.tool."RemoteBrowser"]
tool_name = "RemoteBrowser"
category = "General"
synopsis = "Browse and open remote files."
[tool.black]
line-length = 120
target_version = ['py311']
[tool.ruff]
select = [
"E", "W", # pycodestyle
"F", # pyflakes
"B", # bugbear
"I", # isort
"N", # pep8-naming
"ASYNC", # async
"COM", # commas
"C4", # comprehensions
"DTZ", # datetimez
"ISC", # implicit-str-concat
"G", # logging-format
"T20", # print
"SIM", # simplify
]
ignore = [
"N802", # Function name should be lowercase
"N999", # Invalid module name
"E501", # line too long
"C408", # rewrite empty built-ins as literals
"T201", # print statements.
"DTZ007", # Datetime objects without timezones.
"DTZ005", # More datetimes without timezones.
]
line-length = 120
target-version = "py311"
[tool.ruff.isort]
known-first-party =["common"]
[tool.ruff.flake8-quotes]
docstring-quotes = "double"
[tool.mypy]
show_error_codes = true
ignore_missing_imports = true
warn_unreachable = true
strict = true