-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
46 lines (42 loc) · 1.44 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as readme:
long_description = readme.read()
setup(
name="kern-dump",
use_scm_version=True,
description="Various scripts for analyzing, reading and writing kerning information.",
long_description=long_description,
author="Frank Grießhammer",
author_email="afdko@adobe.com",
url="https://github.com/adobe-type-tools/kern-dump",
license="MIT License",
platforms=["Any"],
setup_requires=["setuptools_scm"],
python_requires=">=3.6",
py_modules=[
"getKerningPairsFromOTF",
"getKerningPairsFromUFO",
"getKerningPairsFromFEA",
],
entry_points={
'console_scripts': [
'dumpkerning=dumpkerning:main',
'dumpKernFeatureFromOTF=dumpKernFeatureFromOTF:main',
'convertKernedOTFtoKernedUFO=convertKernedOTFtoKernedUFO:main',
],
},
install_requires=["afdko"],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Text Processing :: Fonts",
]
)