-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
28 lines (26 loc) · 893 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
import os
from setuptools import setup, find_packages
doc_dir = os.path.join(os.path.dirname(__file__), 'docs')
index_filename = os.path.join(doc_dir, 'index.rst')
long_description = open(index_filename).read().split('split here', 1)[1]
version = '0.1.0'
setup(
name = "django-redirector",
version = version,
packages = find_packages(),
include_package_data=True,
author = "Brant Fitzsimmons",
author_email = "[email protected]",
license = 'BSD',
description = "Redirect on 404s.",
long_description = long_description,
classifiers=[
'Development Status :: 1 - Planning',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
]
)