-
Notifications
You must be signed in to change notification settings - Fork 53
/
setup.py
31 lines (29 loc) · 833 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
from __future__ import absolute_import
from setuptools import setup, find_packages
setup(
name='ajax',
version='3.0.0',
description='A simple framework for creating AJAX endpoints in Django.',
long_description='',
keywords='django, ajax',
author='Joseph C. Stump',
author_email='[email protected]',
url='https://github.com/joestump/django-ajax',
license='BSD',
packages=find_packages(),
zip_safe=False,
install_requires=[
'decorator',
'django-appconf>=1.0.0,<1.1',
],
extras_require={
'Tagging': ['taggit']
},
include_package_data=True,
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Django",
"Environment :: Web Environment",
]
)