-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 995 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (25 loc) · 995 Bytes
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
from setuptools import setup
setup(name='django-ajax-toolkit',
version='0.3.0',
url='https://github.com/Geekfish/django-ajax-toolkit',
author="Eleni Lixourioti",
author_email="contact@eleni.co",
description="Ajax goodies for django projects.",
long_description=open('README.rst').read(),
keywords="django, ajax, utilities, http",
license='BSD',
platforms=['linux'],
packages=('ajaxtoolkit',),
include_package_data=True,
install_requires=[
'msgpack-python==0.3.0',
],
# See http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=['Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: Unix',
'Development Status :: 3 - Alpha',
'Programming Language :: Python']
)