summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorVal Neekman <val@neekware.com>2016-08-26 11:15:53 -0400
committerVal Neekman <val@neekware.com>2016-08-26 11:15:53 -0400
commita5ef6fa3370f8dd278a47dc195fca30d661c156e (patch)
treef49f020db3383d0da4858e465a08e2c95561e97f /setup.py
parent66146885159df3cf24e9ebe32aa288b9900ea052 (diff)
downloadpython-slugify-a5ef6fa3370f8dd278a47dc195fca30d661c156e.tar.gz
add manifest.in, py 3.5 support and relax licensing by moving to MIT
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 46e7d68..068f8af 100755
--- a/setup.py
+++ b/setup.py
@@ -14,12 +14,12 @@ description = 'A Python Slugify application that handles Unicode'
url = 'https://github.com/un33k/python-slugify'
author = 'Val Neekman'
author_email = 'info@neekware.com'
-license = 'BSD'
+license = 'MIT'
install_requires = ['Unidecode>=0.04.16']
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
- 'License :: OSI Approved :: BSD License',
+ 'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
@@ -28,6 +28,7 @@ classifiers = [
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
+ 'Programming Language :: Python :: 3.5',
]