-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (67 loc) · 1.74 KB
/
pyproject.toml
File metadata and controls
74 lines (67 loc) · 1.74 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ai-document-organizer"
version = "1.0.0"
description = "An intelligent document organization application powered by AI"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "Your Name", email = "your.email@example.com"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Office/Business",
"Topic :: Text Processing :: General",
]
dependencies = [
"google-generativeai>=0.3.1",
"openai>=1.3.0",
"pandas>=1.5.3",
"openpyxl>=3.1.2",
"python-docx>=0.8.11",
"beautifulsoup4>=4.12.2",
"markdown>=3.4.3",
"pillow>=9.5.0",
"tqdm>=4.66.1",
"python-dotenv>=1.0.0",
"requests>=2.31.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"black>=23.0.0",
"isort>=5.12.0",
"flake8>=6.0.0",
]
packaging = [
"pyinstaller>=5.13.0",
"cx_freeze>=6.15.0",
]
windows = [
"pywin32>=306",
]
[project.urls]
"Homepage" = "https://github.com/yourusername/ai-document-organizer"
"Bug Tracker" = "https://github.com/yourusername/ai-document-organizer/issues"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.black]
line-length = 100
target-version = ["py38"]
[tool.isort]
profile = "black"
line_length = 100
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"