-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
33 lines (31 loc) · 1010 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "flatbread"
version = "0.1.0"
description = "Pandas extension for aggregation and tabular display"
readme = "readme.md"
requires-python = ">=3.10"
license = { file = "license.md" }
authors = [
{ name = "L.C. Vriend", email = "[email protected]" }
]
dependencies = [
"pandas>=2.0.0",
"jinja2",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"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",
]
keywords = ["pandas", "aggregation", "tables", "display", "dataframe", "extension"]
[project.urls]
Homepage = "https://github.com/lcvriend/flatbread"