forked from PDFMathTranslate/PDFMathTranslate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 825 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 825 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
from pdf2zh import __version__, __author__
from setuptools import setup
with open("README.md", encoding='utf-8') as f:
readme = f.read()
with open("requirements.txt", encoding='utf-8') as f:
requirements = f.readlines()
setup(
name="pdf2zh",
long_description=readme,
long_description_content_type="text/markdown",
description="Latex PDF Translator",
license="AGPLv3",
version=__version__,
author=__author__,
author_email="byaidux@gmail.com",
url="https://github.com/Byaidu/PDFMathTranslate",
packages=["pdf2zh"],
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
entry_points={
'console_scripts': [
'pdf2zh=pdf2zh.pdf2zh:main',
]
},
)