-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (27 loc) · 929 Bytes
/
pyproject.toml
File metadata and controls
29 lines (27 loc) · 929 Bytes
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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "flatbreadxl"
version = "0.1.0"
description = "Python library for exporting pandas DataFrames to Excel with customizable layouts, styling, and formatting."
license = { file = "license.md" }
authors = [
{ name = "L.C. Vriend", email = "vanboefer@gmail.com" }
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"pandas",
"openpyxl",
]
requires-python = ">=3.10"
[project.urls]
Homepage = "https://github.com/lcvriend/pandas-xl"