forked from l0kix2/django-stored-filters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (29 loc) · 973 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
import os
from distutils.core import setup
CURRENT_DIR = os.path.abspath(os.path.dirname(__file__))
README_FILEPATH = os.path.join(CURRENT_DIR, 'README.rst')
setup(
name='django-stored-filters',
version='0.1.1',
packages=[
'stored_filters',
'stored_filters.tests',
'stored_filters.migrations'
],
author='Kirill Sibirev',
author_email='[email protected]',
url='https://github.com/l0kix2/django-stored_filters',
description='Django model filters, stored in json',
long_description=open(README_FILEPATH).read(),
keywords=['django', 'filters', 'queryset', 'json'],
license='MIT',
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
],
)