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
|
from setuptools import setup, find_packages
setup(
name='typogrify',
version=__import__('typogrify').__version__,
packages=find_packages(),
author='Christian Metts, Justin Mayer, Chris Drackett',
author_email='chris@tiltshiftstudio.com',
license='BSD',
description='Filters to enhance web typography, including support for Django & Jinja templates',
long_description=open('README.rst').read(),
url='https://github.com/mintchaos/typogrify',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
'Framework :: Flask',
'Topic :: Utilities'
],
install_requires=[
'smartypants>=1.8.3'
],
)
|