-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
40 lines (36 loc) · 1.14 KB
/
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
35
36
37
38
39
40
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
install_requires = [
'Django>=1.2',
]
tests_require = [
'django-jenkins>=0.11.0',
'pep8>=0.6.1',
]
long_description = open('README.rst').read()
setup(
name='django-ajaxutils',
version="0.2",
description='Ajax requests for Ponies',
url='http://github.com/ahref/django-ajaxutils',
packages=['ajaxutils'],
zip_safe=True,
license='BSD',
classifiers=['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'],
long_description=long_description,
install_requires=install_requires,
tests_require=tests_require,
extras_require={'test': tests_require},
test_suite='runtests.runtests',
)