forked from jieter/django-tables2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·35 lines (28 loc) · 1.08 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='django-tables2',
version='0.9.4',
description='Table framework for Django',
author='Bradley Ayers',
author_email='bradley.ayers@gmail.com',
license='Simplified BSD',
url='https://github.com/bradleyayers/django-tables2/',
packages=find_packages(exclude=['tests.*', 'tests', 'example.*', 'example']),
include_package_data=True, # declarations in MANIFEST.in
install_requires=['Django >=1.3'],
tests_require=['Django >=1.3', 'Attest >=0.4', 'django-attest >=0.2.2',
'fudge', 'django-haystack', 'unittest-xml-reporting'],
test_loader='tests:loader',
test_suite='tests.everything',
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries',
],
)