-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathsetup.py
31 lines (29 loc) · 999 Bytes
/
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
import setuptools
from easyofd import __version__
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="easyofd",
version=__version__,
author="renoyuan",
author_email="[email protected]",
description="easy operate OFD",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/renoyuan/easyofd",
packages=setuptools.find_packages(exclude=["README.md",".vscode", ".vscode.*", ".git", ".git.*"]),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
install_requires=[ ### 依赖包
"reportlab>=3.6.11",
"xmltodict>=0.13.0",
"loguru>=0.7.2",
"fontTools>=4.43.1",
"PyMuPDF>=1.23.4",
"pyasn1>=0.6.0"
],
python_requires='>=3.8',
)