-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (35 loc) · 996 Bytes
/
setup.py
File metadata and controls
36 lines (35 loc) · 996 Bytes
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
from setuptools import setup, find_packages
setup(
name="docify",
version="0.1.0",
description="Convert Word, PDF, Excel, and CSV files via CLI or GUI.",
author="Mehmood Ul Haq",
author_email="mehmoodulhaq1040@gmail.com",
license="MIT",
packages=find_packages(),
install_requires=[
"pandas",
"python-docx",
"docx2pdf",
"pdfplumber",
"openpyxl",
"pdf2docx",
"PyQt5"
],
entry_points={
"console_scripts": [
"p2w_convertor=p2w_convertor.cli:main",
],
},
url="https://github.com/mehmoodulhaq570/docify",
project_urls={
"Homepage": "https://github.com/mehmoodulhaq570/docify",
"Bug Tracker": "https://github.com/mehmoodulhaq570/docify/issues"
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
)