1 Star 0 Fork 1

paulzlb/xlwings

forked from lyra/xlwings 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pyproject.toml 2.10 KB
一键复制 编辑 原始数据 按行查看 历史
[build-system]
requires = ["maturin>=1,<2"]
build-backend = "maturin"
[project]
name = "xlwings"
description = "Make Excel fly: Interact with Excel from Python and vice versa."
authors = [
{ name = "Felix Zumstein", email = "[email protected]" },
]
readme = "README.rst"
requires-python = ">=3.8"
dependencies = [
"pywin32 >= 224;platform_system=='Windows'",
"psutil >= 2.0.0;platform_system=='Darwin'",
"appscript >= 1.0.1;platform_system=='Darwin'",
]
classifiers = [
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Topic :: Office/Business :: Financial :: Spreadsheet",
"License :: OSI Approved :: BSD License",
]
dynamic = ["version"]
[project.optional-dependencies]
reports = ["Jinja2", "pdfrw"]
all = [
"black",
"isort",
"Jinja2",
"pandas",
"matplotlib",
"plotly",
"flask",
"requests",
"pdfrw",
"pytest",
]
[project.scripts]
xlwings = "xlwings.cli:main"
[project.urls]
Homepage = "https://www.xlwings.org"
Documentation = "https://docs.xlwings.org"
Funding = "https://www.xlwings.org/pricing"
Source = "https://github.com/xlwings/xlwings"
Changelog = "https://docs.xlwings.org/en/stable/whatsnew.html"
[tool.maturin]
exclude = ["xlwings/js/tsconfig.json", "xlwings/js/excel.d.ts"]
module-name = "xlwings.xlwingslib"
[tool.black]
target-version = ["py38"]
force-exclude = "xlwings/mistune"
[tool.ruff]
target-version = "py38"
line-length = 88
fix = true
ignore = [
# Whitespace before ':' (black compatibility)
"E203",
# Line too long (black doesn't handle long strings)
"E501",
# Module level import not at top of file
"E402",
]
select = [
"E", # pycodestyle errors
"F", # pyflakes
"I", # isort
]
[tool.ruff.isort]
combine-as-imports = true
known-first-party = ["xlwings"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/paulzlb/xlwings.git
[email protected]:paulzlb/xlwings.git
paulzlb
xlwings
xlwings
main

搜索帮助