36 lines
992 B
TOML
36 lines
992 B
TOML
[project]
|
|
name = "ironcalc"
|
|
version = "0.3.0"
|
|
description = "Create, edit and evaluate Excel spreadsheets"
|
|
requires-python = ">=3.10"
|
|
keywords = [
|
|
"xlsx",
|
|
"spreadsheet",
|
|
]
|
|
classifiers = [
|
|
"License :: OSI Approved :: MIT License",
|
|
"License :: OSI Approved :: Apache Software License",
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python :: 3",
|
|
"Topic :: Software Development :: Libraries",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
"Topic :: Office/Business :: Financial :: Spreadsheet",
|
|
]
|
|
authors = [
|
|
{ name = "Nicolás Hatcher", email = "nicolas@theuniverse.today" },
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://www.ironcalc.com/"
|
|
Source = "https://github.com/ironcalc/ironcalc"
|
|
Tracker = "https://github.com/ironcalc/ironcalc/issues"
|
|
|
|
[build-system]
|
|
requires = ["maturin>=1.0,<2.0"]
|
|
build-backend = "maturin"
|
|
|
|
|
|
[tool.maturin]
|
|
features = ["pyo3/extension-module"] |