-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (66 loc) · 1.89 KB
/
pyproject.toml
File metadata and controls
72 lines (66 loc) · 1.89 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
[project]
name = "md-spreadsheet-parser"
version = "1.4.3"
description = "A robust, zero-dependency Python library for parsing, validating, and manipulating Markdown tables, including conversion from Excel to Markdown."
readme = "README.md"
license = { file = "LICENSE" }
keywords = [
"markdown",
"table",
"parser",
"spreadsheet",
"excel",
"csv",
"pandas",
"dataframe",
"conversion",
"cli",
"zero-dependency",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Text Processing :: Markup :: Markdown",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
]
authors = [{ name = "f-y" }]
requires-python = ">=3.10"
dependencies = []
[project.urls]
Homepage = "https://fy-labs.github.io/md-spreadsheet-parser/"
Repository = "https://github.com/fy-labs/md-spreadsheet-parser"
Issues = "https://github.com/fy-labs/md-spreadsheet-parser/issues"
Changelog = "https://github.com/fy-labs/md-spreadsheet-parser/releases"
[project.scripts]
md-spreadsheet-parser = "md_spreadsheet_parser.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"build>=1.3.0",
"pytest>=9.0.1",
"mkdocs>=1.6.0",
"mkdocs-material>=9.5.0",
"mkdocstrings[python]>=0.25.0",
"mkdocs-include-markdown-plugin>=6.0.0",
"ruff>=0.9.0",
"pydantic>=2.12.5",
"pandas>=2.3.3",
"pandas-stubs>=2.2.0",
"mkdocs-git-revision-date-localized-plugin>=1.2.0",
"pyright>=1.1.407",
"openpyxl>=3.1.5",
"mkdocs-static-i18n>=1.2.0",
]
[tool.pyright]
include = ["src", "tests"]
venvPath = "."
venv = ".venv"
typeCheckingMode = "standard"
[tool.ruff]
exclude = ["packages"]