-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
40 lines (34 loc) · 1.02 KB
/
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
34
35
36
37
38
39
40
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "file2txt"
version = "0.0.1b2"
authors = [{ name = "DOGESEC", email = "support@dogesec.com" }]
description = "file2txt is a Python library takes common file formats and turns them into plain text (a txt file) with Markdown styling."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
'pillow>=10.0.1',
'bs4>=0.0.2',
'google-cloud-vision>=3.4.5',
'grpcio-status>=1.62.2',
'markdownify>=0.12.1',
'python-dotenv>=1.0.1',
'readability-lxml>=0.8.1',
'lxml_html_clean>=0.1.1',
'tabulate>=0.9.0',
'pandas>=2.2.2',
'filetype>=1.2.0',
'requests>=2.31.0',
]
[tool.hatch.metadata]
allow-direct-references = true
[project.urls]
Homepage = "https://github.com/muchdogesec/file2txt"
Issues = "https://github.com/muchdogesec/file2txt/issues"