-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
73 lines (62 loc) · 2.07 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
[build-system]
requires = ["maturin>=1,<2"]
build-backend = "maturin"
[project]
name = 'madato'
version = "0.7.0"
requires-python = '>=3.7'
description = "Convert between various formats (YAML, JSON, XLSX, ODS, CSV) to Markdown Tables"
authors = [{ name = 'Ramon Buckland', email = '[email protected]' }]
readme = 'README.md'
classifiers = [
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'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',
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Markup',
'Topic :: Text Processing :: Markup :: Markdown',
]
license = { text = "MIT License" }
dependencies = []
[project.optional-dependencies]
dev = ['maturin >= 1.5', 'pyyaml >= 6', 'pytest >= 7.3', 'ipykernel >= 6']
[project.urls]
Homepage = 'https://github.com/inosion/madato'
Funding = 'https://github.com/sponsors/inosion'
Source = 'https://github.com/inosion/madato'
Changelog = 'https://github.com/inosion/madato/releases'
[tool.maturin]
bindings = 'pyo3'
python-source = "pysource"
features = ["pyo3/extension-module", "python"]
[tool.pytest.ini_options]
testpaths = "pysource/tests"
log_format = '%(name)s %(levelname)s: %(message)s'
filterwarnings = 'error'
[tool.black]
color = true
line-length = 120
target-version = ['py39']
skip-string-normalization = true
[tool.isort]
line_length = 120
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
combine_as_imports = true
color_output = true
[tool.ruff]
line-length = 120
extend-select = ['Q']
flake8-quotes = { inline-quotes = 'single', multiline-quotes = 'double' }