One notable absence was README.md... :) For the testdata/*, I now use `include_package_data=True` in setup.py, to automatically install any data files found inside package directories that are also specified in MANIFEST.in file. I also include the Snippets, which I think should belong to the source distribution, despite not being installed as console scripts like ttx, etc. The MANIFEST.in does not need to include itself (done by default).
67 lines
2.0 KiB
Python
Executable File
67 lines
2.0 KiB
Python
Executable File
#! /usr/bin/env python
|
|
|
|
from __future__ import print_function
|
|
from setuptools import setup, find_packages
|
|
|
|
# Force distutils to use py_compile.compile() function with 'doraise' argument
|
|
# set to True, in order to raise an exception on compilation errors
|
|
import py_compile
|
|
orig_py_compile = py_compile.compile
|
|
|
|
def doraise_py_compile(file, cfile=None, dfile=None, doraise=False):
|
|
orig_py_compile(file, cfile=cfile, dfile=dfile, doraise=True)
|
|
|
|
py_compile.compile = doraise_py_compile
|
|
|
|
|
|
# Trove classifiers for PyPI
|
|
classifiers = {"classifiers": [
|
|
"Development Status :: 4 - Beta",
|
|
"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",
|
|
"Topic :: Multimedia :: Graphics",
|
|
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
|
|
]}
|
|
|
|
long_description = """\
|
|
FontTools/TTX is a library to manipulate font files from Python.
|
|
It supports reading and writing of TrueType/OpenType fonts, reading
|
|
and writing of AFM files, reading (and partially writing) of PS Type 1
|
|
fonts. The package also contains a tool called "TTX" which converts
|
|
TrueType/OpenType fonts to and from an XML-based format.
|
|
"""
|
|
|
|
setup(
|
|
name="fonttools",
|
|
version="3.0",
|
|
description="Tools to manipulate font files",
|
|
author="Just van Rossum",
|
|
author_email="just@letterror.com",
|
|
maintainer="Behdad Esfahbod",
|
|
maintainer_email="behdad@behdad.org",
|
|
url="http://github.com/behdad/fonttools",
|
|
license="OpenSource, BSD-style",
|
|
platforms=["Any"],
|
|
long_description=long_description,
|
|
package_dir={'': 'Lib'},
|
|
packages=find_packages("Lib"),
|
|
py_modules=['sstruct', 'xmlWriter'],
|
|
extra_path='FontTools',
|
|
include_package_data=True,
|
|
entry_points={
|
|
'console_scripts': [
|
|
"ttx = fontTools.ttx:main",
|
|
"pyftsubset = fontTools.subset:main",
|
|
"pyftmerge = fontTools.merge:main",
|
|
"pyftinspect = fontTools.inspect:main"
|
|
]
|
|
},
|
|
**classifiers
|
|
)
|