forked from mastodon-sc/python-mastodon-importer
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
104 lines (90 loc) · 2.4 KB
/
pyproject.toml
File metadata and controls
104 lines (90 loc) · 2.4 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
[build-system]
requires = ["setuptools>=42.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[project]
authors = [
{ name = "Christoph Sommer", email = "christoph.sommer23@gmail.com"},
{ name = "Léo Guignard", email = "leo.guignard@univ-amu.fr"},
]
maintainers = [
{name = "Léo Guignard", email = "leo.guignard@univ-amu.fr"}
]
name = "Micro-Mastodon-Reader"
description = "Light Mastodon project file reader for Python"
version = "1.1.1"
license = "BSD-3-Clause"
license-files = [ "LICENSE" ]
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">= 3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"numpy",
]
[project.urls]
"Bug Tracker" = "https://github.com/GuignardLab/python-mastodon-importer-light/issues"
"Documentation" = "https://github.com/GuignardLab/python-mastodon-importer-light#README.md"
"Source Code" = "https://github.com/GuignardLab/python-mastodon-importer-light"
"User Support" = "https://github.com/GuignardLab/python-mastodon-importer-light/issues"
[tool.black]
line-length = 79
[tool.isort]
profile = "black"
line_length = 79
[tool.bumpver]
current_version = "1.1.1"
version_pattern = "MAJOR.MINOR.PATCH[-TAG]"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'current_version = "{version}"',
'version = "{version}"',
]
"src/micromastodonreader/__init__.py" = [
'__version__ = "{version}"',
]
[tool.ruff]
line-length = 79
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".mypy_cache",
".pants.d",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
"*vendored*",
"*_vendor*",
]
target-version = "py313"
[tool.ty.environment]
root = ["./src", ]
[tool.ty.rules]
unresolved-import = "ignore"
[tool.pytest.ini_options]
addopts = "--cov"