forked from ArtifexSoftware/pdf2docx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
67 lines (57 loc) · 1.92 KB
/
setup.py
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import find_packages, setup
DESCRIPTION = 'Open source Python library converting pdf to docx.'
EXCLUDE_FROM_PACKAGES = ["build", "dist", "test"]
# read version number from version.txt, otherwise alpha version
# Github CI can create version.txt dynamically.
def get_version(fname):
if os.path.exists(fname):
with open(fname, "r", encoding="utf-8") as f:
version = f.readline().strip()
else:
version = '0.5.6a1'
return version
# Load README.md for long description
def load_long_description(fname):
if os.path.exists(fname):
with open(fname, "r", encoding="utf-8") as f:
long_description = f.read()
else:
long_description = DESCRIPTION
return long_description
def load_requirements(fname):
try:
# pip >= 10.0
from pip._internal.req import parse_requirements
except ImportError:
# pip < 10.0
from pip.req import parse_requirements
reqs = parse_requirements(fname, session=False)
try:
requirements = [str(ir.requirement) for ir in reqs]
except AttributeError:
requirements = [str(ir.req) for ir in reqs]
return requirements
setup(
name="pdf2docx",
version=get_version("version.txt"),
keywords=["pdf-to-word", "pdf-to-docx"],
description=DESCRIPTION,
long_description=load_long_description("README.md"),
long_description_content_type="text/markdown",
license="GPL v3",
author="dothinking",
author_email="train8808@gmail.com",
url="https://github.com/dothinking/pdf2docx",
packages=find_packages(exclude=EXCLUDE_FROM_PACKAGES),
include_package_data=True,
zip_safe=False,
install_requires=load_requirements("requirements.txt"),
python_requires=">=3.6",
entry_points={
"console_scripts": [
"pdf2docx=pdf2docx.main:main"
]},
)