-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
43 lines (41 loc) · 1.4 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
from setuptools import setup, find_packages
setup(
name="ufonormalizer",
description=("Script to normalize the XML and other data "
"inside of a UFO."),
author="Tal Leming",
author_email="[email protected]",
url="https://github.com/unified-font-object/ufoNormalizer",
package_dir={"": "src"},
packages=find_packages(where="src"),
entry_points={
'console_scripts': [
"ufonormalizer = ufonormalizer:main",
]
},
use_scm_version={
"write_to": 'src/ufonormalizer/_version.py',
"write_to_template": '__version__ = "{version}"',
},
setup_requires=['setuptools_scm'],
test_suite="tests",
license="OpenSource, BSD-style",
platforms=["Any"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Text Processing :: Fonts",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
],
python_requires='>=3.6',
zip_safe=True,
)