forked from magopian/django-data-exports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 955 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
28
29
30
31
32
33
# -*- coding: utf-8 -*-
from distutils.core import setup
from setuptools import find_packages
import data_exports
setup(
name='django-data-exports',
version=data_exports.__version__,
author=u'Mathieu agopian',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
url='https://github.com/magopian/django-data-exports',
license='BSD license, see LICENSE file',
description='Model data exports for Django',
long_description=open('README.rst').read(),
install_requires=[
'Django>=1.3',
'django-inspect-model',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python',
],
zip_safe=False,
)