-
Notifications
You must be signed in to change notification settings - Fork 39
/
pyproject.toml
69 lines (62 loc) · 2.38 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
# See https://setuptools.readthedocs.io/en/latest/build_meta.html
[build-system]
# Use setuptools >= 43 because it automatically includes pyproject.toml in source distribution
# Use setuptools >= 46.5 to use attr: package.__version__
# Use setuptools >= 61 for pyproject.toml support
# https://setuptools.readthedocs.io/en/latest/history.html#id284
requires = ["setuptools >= 61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ratarmount"
version = "1.0.0"
description = "Random Access To Archived Resources"
authors = [{name = "Maximilian Knespel", email = "mxmlnknp@gmail.com"}]
license = {text = "MIT"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: System :: Archiving",
"Topic :: System :: Archiving :: Compression",
"Topic :: System :: Filesystems",
"Topic :: Utilities",
]
urls = {Homepage = "https://github.com/mxmlnkn/ratarmount"}
dependencies = [
# https://pip.pypa.io/en/stable/reference/requirement-specifiers/
# https://packaging.python.org/en/latest/glossary/#term-Requirement-Specifier
# https://packaging.python.org/en/latest/specifications/dependency-specifiers/#dependency-specifiers
"ratarmountcore[7z, bzip2, fat, git, gzip, rar, xz, zip, zstd] ~= 0.8.0",
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.optional-dependencies]
full = ["ratarmountcore[full]"]
bzip2 = ["ratarmountcore[bzip2]"]
gzip = ["ratarmountcore[gzip]"]
rar = ["ratarmountcore[rar]"]
xz = ["ratarmountcore[xz]"]
zip = ["ratarmountcore[zip]"]
zstd = ["ratarmountcore[zstd]"]
squashfs = ["ratarmountcore[squashfs]"]
fsspec = ["ratarmountcore[fsspec-backends]"]
[project.scripts]
ratarmount = "ratarmount:cli"
[tool.setuptools]
py-modules = ["ratarmount"]
license-files = ["LICENSE"]
[tool.codespell]
# fsspec uses cachable instead of cacheable ...
ignore-words-list = "fo,Nd,unx,cachable"