-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 1.06 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='django-async-reports',
version='0.2.4',
long_description =read('README.txt'),
description='Reporting for django',
keywords = "CSV Django reporting",
author='Anthony TRESONTANI',
author_email='[email protected]',
include_package_data=True,
packages=find_packages(exclude=["async_reports.test_app", "async_reports.celeryconfig"]),
install_requires=[
'Django==1.3.1',
'South==0.7.3',
'django-jsonfield==0.8.10',
'celery==2.5.3',
],
classifiers=['Environment :: Web Environment',
'Development Status :: 2 - Pre-Alpha',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: Unix',
'Programming Language :: Python']
)