-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
38 lines (33 loc) · 1.12 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
import os
from setuptools import setup, find_packages
version = __import__('django_exportable_admin').__version__
def read(fname):
# read the contents of a text file
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="django-exportable-admin",
version=version,
url='https://github.com/jwineinger/django-exportable-admin',
license='BSD',
platforms=['OS Independent'],
description="Provides a simple way to export Admin change-lists",
long_description=read('README.rst'),
author='Jay Wineinger, Stefan Foulis, Steve Bussetti',
author_email='jay.wineinger@gmail.com',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=(
"Django>=1.4.0a0",
),
classifiers=[
'License :: OSI Approved :: BSD License',
'Topic :: Internet :: WWW/HTTP',
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
)