-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 758 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (21 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from distutils.core import setup
setup(
name='django-url-tools-py3',
description='Django helpers for dealing with URLs in templates',
version='0.2.0',
packages=['url_tools', 'url_tools.templatetags'],
author='Monwara LLC',
author_email='branko@monwara.com',
maintainer='Kyle Buzsaki',
maintainer_email='kbuzsaki@gmail.com',
url='https://github.com/kbuzsaki/django-url-tools-py3',
download_url='https://github.com/kbuzsaki/django-url-tools-py3/releases',
license='BSD',
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Framework :: Django',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
],
)