-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
44 lines (40 loc) · 1.32 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
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as readme:
long_description = readme.read()
setup(
name="afdko-python-modules",
use_scm_version=True,
description="Modules for writing kern feature and mark feature files",
long_description=long_description,
author="Frank Grießhammer",
author_email="[email protected]",
url="https://github.com/adobe-type-tools/python-modules",
license="MIT License",
platforms=["Any"],
setup_requires=["setuptools_scm"],
python_requires=">=3.6",
py_modules=[
"kernFeatureWriter",
"markFeatureWriter",
],
entry_points={
'console_scripts': [
'kernFeatureWriter=kernFeatureWriter:main',
'markFeatureWriter=markFeatureWriter: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",
]
)