-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
32 lines (29 loc) · 986 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
32
import setuptools
import os
setup_py_cwd = os.path.dirname(__file__)
with open(os.path.join(setup_py_cwd, "README.md"), encoding="utf-8") as f:
readme = f.read()
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
]
setuptools.setup(
name="pymupdf_fonts",
version="1.0.5",
author="Jorj McKie",
author_email="[email protected]",
description="Collection of font binaries for use in PyMuPDF",
packages=setuptools.find_packages(),
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/pymupdf/pymupdf-fonts",
classifiers=classifiers,
project_urls={
"Documentation": "https://pymupdf.readthedocs.io/en/latest/font.html",
"Download": "https://github.com/pymupdf/pymupdf-fonts/releases",
},
license="SIL OFL V1.1",
)