-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 759 Bytes
/
pyproject.toml
File metadata and controls
30 lines (26 loc) · 759 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
30
[project]
name = "excel-split"
version = "0.1.0"
description = "A Python tool for splitting Excel workbooks by department or organizational unit, extracting and organizing account data across multiple sheets"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"pandas>=2.0.0",
"openpyxl>=3.1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"black>=23.0.0",
"flake8>=6.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.urls]
Homepage = "https://github.com/CrueChan/excel-split-tool"
Repository = "https://github.com/CrueChan/excel-split-tool.git"
Issues = "https://github.com/CrueChan/excel-split-tool/issues"
[tool.black]
line-length = 88
target-version = ['py312']