-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (44 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
51 lines (44 loc) · 1.06 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[project]
name = "wareflow-analysis"
version = "0.7.8"
description = "Warehouse data analysis CLI tool"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "Code with dave", email = "davidddpereiraaa6@gmail.com" }
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"typer>=0.21",
"pandas>=2.0",
"openpyxl>=3.0",
"excel-to-sql>=0.4.1",
"pyyaml",
"customtkinter>=5.2",
"pillow>=10.0",
]
[project.scripts]
wareflow = "wareflow_analysis.cli:cli"
wareflow-gui = "wareflow_analysis.gui:main"
[project.urls]
Homepage = "https://github.com/wareflowx/was"
Repository = "https://github.com/wareflowx/was"
Issues = "https://github.com/wareflowx/was/issues"
[dependency-groups]
dev = [
"pytest>=9.0",
"pytest-cov",
"ruff>=0.14",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.pytest.ini_options]
testpaths = ["tests"]