-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
33 lines (31 loc) · 964 Bytes
/
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
# -*- coding: utf-8 -*-
from setuptools import setup
VERSION = '1.3.3'
setup(
name='django-typogrify',
version=VERSION,
description='Make type not look like crap (for django apps)',
author='Chris Drackett',
author_email='chris@tiltshiftstudio.com',
url='http://github.com/chrisdrackett/django-typogrify',
packages=[
"typogrify",
"typogrify.templatetags",
],
install_requires=[
'smartypants>=1.8.3', 'num2words'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
# 'Intended Audience :: Designers',
'Natural Language :: English',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
'Topic :: Utilities',
'Topic :: Text Processing'
],
)