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
|
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import os
from setuptools import setup
# Utility function to read the README file.
# Used for the long_description…
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "ufo2otf",
version = "0.2.2",
author = "Eric Schrijver",
author_email = "eric@ericschrijver.nl",
description = ("Take UFO font sources and generate OTF’s and webfonts"),
license = "BSD",
keywords = "font utility web ufo otf conversion command line",
url = "http://packages.python.org/an_example_pypi_project",
packages=['ufo2otf'],
scripts=['bin/ufo2otf'],
data_files=[('share/doc/ufo2otf', ['README.rst'])],
long_description=read('README.rst'),
classifiers=[
"Environment :: Console",
"Development Status :: 3 - Alpha",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
],
)
|