-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (27 loc) · 967 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
29
30
31
32
from setuptools import setup, find_packages
__version__ = __import__('dipper').__version__
description = "Easy custom Django form rendering in Django and Jinja templates"
setup(
name="django-dipper",
version='.'.join([str(v) for v in __version__]),
url="http://github.com/littleweaver/django-dipper",
description=description,
long_description=description,
author='Little Weaver Web Collective, LLC',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Other Audience',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
platforms=['OS Independent'],
install_requires=[
'django>=1.7',
]
)