-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (36 loc) · 1.2 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
from setuptools import setup
with open("README.rst", "r", encoding="utf-8") as readme:
long_description = readme.read()
setup(
name="fbdiff",
use_scm_version=True,
description="Show a summary of table differences between two OpenType fonts.",
long_description=long_description,
author="Just van Rossum",
author_email="justvanrossum@gmail.com",
url="http://github.com/justvanrossum/fbdiff",
license="Apache License 2.0",
platforms=["Any"],
setup_requires=["setuptools_scm"],
python_requires=">=3.7",
py_modules=["fbdiff"],
entry_points={
'console_scripts': ['fbdiff=fbdiff:main'],
},
install_requires=[
"fonttools",
],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Text Processing :: Fonts",
]
)