-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsetup.py
39 lines (36 loc) · 1.1 KB
/
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
34
35
36
37
38
39
from setuptools import setup, find_packages
import os
version = __import__('cms_redirects').__version__
install_requires = [
'setuptools',
'django',
'django-cms',
]
setup(
name = "django-cms-redirects",
version = version,
url = 'http://github.com/salvaorenick/django-cms-redirects',
license = 'BSD',
platforms=['OS Independent'],
description = "",
author = "Andrew Schoen",
author_email = '[email protected]',
packages=find_packages(),
install_requires = install_requires,
include_package_data=True,
zip_safe=False,
classifiers = [
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: Site Management :: Link Checking',
],
package_dir={
'cms_redirects': 'cms_redirects',
},
)