-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
25 lines (24 loc) · 916 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
from setuptools import setup
setup(
name='django-search-views',
version='0.3.7',
url='https://github.com/inmagik/django-search-views',
install_requires=[
'Django >=1.8',
],
description="Search List class-based views for Django",
long_description=open('README.rst', 'r').read(),
license="MIT",
author="Mauro Bianchi",
author_email="bianchimro@gmail.com",
packages=['search_views'],
package_dir={'search_views': 'search_views'},
include_package_data = True, # include everything in source control
package_data={'search_views': ['*.py','contrib/*.py','tests/*.py','tests/templates/*.html', 'tests/templates/extra_views/*.html']},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Programming Language :: Python']
)