forked from skyl/django-eventpickrs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (29 loc) · 892 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
33
34
from setuptools import setup, find_packages
version = '0.1'
LONG_DESCRIPTION = """
=====================================
django-events
=====================================
Simple reusable app for django with jquery-ui datepickr
"""
setup(
name='django-events',
version=version,
description="django-events",
long_description=LONG_DESCRIPTION,
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Django",
"Environment :: Web Environment",
],
keywords='django,pinax,jquery-ui,datepickr',
author='Skylar Saveland',
author_email='[email protected]',
url='http://github.com/skyl/django-events',
license='MIT',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
setup_requires=['setuptools_git'],
)