-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (60 loc) · 1.56 KB
/
pyproject.toml
File metadata and controls
68 lines (60 loc) · 1.56 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
[build-system]
requires = ["setuptools>=67.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "bridgex"
version = "0.2.1"
description = "Open-source desktop app for converting files to Markdown, built in Rust with Freya and Markitdown."
readme = { file = "README.md", content-type = "text/markdown", charset = "utf-8" }
license = "GPL-3.0-only"
authors = [{ name = "dev2forge", email = "dev2forge@gmail.com" }]
maintainers = [{ name = "tutosrive", email = "tutosriveorg@gmail.com" }]
keywords = [
"markdown",
"converter",
"gui",
"editor",
"viewer",
"rust",
"pdf",
"docx",
"pptx",
"xls",
"xlsx",
"csv",
"txt",
"html",
"htm",
"file converter",
"markdown converter",
"markitdown",
"dev2forge",
"bridgex"
]
dependencies = []
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Topic :: Utilities",
"Topic :: Text Processing :: Markup",
"Programming Language :: Python :: 3",
"Programming Language :: Rust",
"Environment :: Win32 (MS Windows)",
"Environment :: MacOS X"
]
[project.scripts]
bridgex = "bridgex.__main__:main"
[project.urls]
Homepage = "https://github.com/Dev2Forge/bridgex"
Repository = "https://github.com/Dev2Forge/bridgex"
Issues = "https://github.com/Dev2Forge/bridgex/issues"
[tool.setuptools]
package-dir = {"" = "python"}
packages = { find = { where = ["python"] } }
[tool.setuptools.package-data]
bridgex = [
"bin/*",
"bin/**"
]