-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (52 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
59 lines (52 loc) · 1.28 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
52
53
54
55
56
57
58
59
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "inventory-management-genai"
version = "0.1.0"
description = "Inventory Management application powered by Generative AI"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.11"
dependencies = [
"streamlit>=1.35",
"pandas>=2.1.0",
"python-dotenv>=1.0",
"google-generativeai>=0.7",
"plotly>=5.0",
"openpyxl>=3.1",
]
# NOTE: pandasai is intentionally excluded from the install extras.
# Every pandasai 1.x release pins pandas==1.5.3, which conflicts with the
# pandas>=2.1.0 required here and has no Python 3.12+ wheels. The plotting
# feature in app.py degrades gracefully when pandasai is absent.
[project.optional-dependencies]
dev = [
"pytest>=8,<10",
"ruff>=0.4",
"pip-audit>=2.7",
"pip-tools>=7",
]
[tool.setuptools]
py-modules = [
"analytics",
"audit",
"app",
"config",
"database",
"excel_processing",
"guardrails",
"prompt",
"skills",
"utils",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
# E501 (line-too-long) is handled at the formatter level
ignore = ["E501"]