File: setup.py

package info (click to toggle)
typogrify 1%3A2.0.7-4
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 184 kB
  • sloc: python: 426; makefile: 3
file content (29 lines) | stat: -rwxr-xr-x 954 bytes parent folder | download | duplicates (4)
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
#!/usr/bin/env python

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'
    ],
)