forked from mozilla/unicode-slugify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 941 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
from setuptools import setup
setup(
name='unicode-slugify',
version='0.1',
description='A slug generator that turns strings into unicode slugs.',
long_description=open('README.md').read(),
author='Jeff Balogh, Dave Dash',
author_email='[email protected], [email protected]',
url='http://github.com/mozilla/unicode-slugify',
license='BSD',
packages=['slugify'],
include_package_data=True,
package_data = { '': ['README.md'] },
zip_safe=False,
install_requires=['django'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Environment :: Web Environment :: Mozilla',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)