forked from joestump/django-ajax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 751 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
from setuptools import setup, find_packages
setup(
name='django-ajax',
version='0.1.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',],
extras_require = {
'Tagging': ['taggit']
},
include_package_data=True,
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Django",
"Environment :: Web Environment",
]
)