-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
31 lines (27 loc) · 1002 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
import os
FILE_PATH = os.path.dirname(os.path.realpath(__file__))
with open(os.path.join(FILE_PATH, "README.md"), "r", encoding="utf-8") as fh:
long_description = fh.read()
requirements_path = os.path.join(FILE_PATH, "requirements.txt")
with open(requirements_path, encoding="utf-8") as f:
required = f.read().splitlines()
setuptools.setup(
name="mplfonts",
version="0.0.8",
author="Wentao Li",
author_email="[email protected]",
description="Fonts manager for matplotlib",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Clarmy/mplfonts",
include_package_data=True,
package_data={"": ["rc/matplotlibrc", "fonts/*"]},
packages=setuptools.find_packages(),
install_requires=required,
classifiers=[
"Programming Language :: Python :: 3",
],
python_requires=">=3.7",
entry_points={"console_scripts": ["mplfonts = mplfonts.bin.cli:cli"]},
)