-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (22 loc) · 868 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
from setuptools import find_packages, setup
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="korsubset",
version="0.1.2",
description="An easy font subsetting tool for Korean fonts.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/SeokminHong/korsubset",
author="Seokmin Hong",
author_email="ghdtjrals240@naver.com",
license="MIT",
packages=find_packages(),
package_data={"korsubset": ["unicode-range.txt"]},
zip_safe=False,
install_requires=["fonttools", "Brotli", "zopfli"],
keywords=["font", "Korean", "Hangul", "subset"],
entry_points={"console_scripts": ["korsubset=korsubset.__main__:main"]},
)