-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
33 lines (28 loc) · 1020 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 -*-
import os
from setuptools import setup, find_packages
README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-admin-exporter',
version='0.2.1',
url='https://github.com/RyanBalfanz/django-admin-exporter',
author='Ryan Balfanz',
author_email='[email protected]',
description='Simple admin actions to download/export selected items in CSV, JSON, XML, etc.',
long_description=README,
packages = find_packages(exclude=("example_project",)),
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=['unicodecsv'],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)