forked from jamespacileo/django-pure-pagination
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (24 loc) · 917 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
import os
from distutils.core import setup
from setuptools import setup, find_packages
setup(name='django-pure-pagination',
version='0.2',
author='James Pacileo',
long_description = open('README.rst').read(),
license='BSD',
keywords='pagination, django',
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Django",
"Environment :: Web Environment",
],
author_email='jamespacileo@gmail.com',
url='https://github.com/jamespacileo/django-pure-pagination/',
packages = ['pure_pagination'],
include_package_data=True,
zip_safe = False,
package_data = {
'pure_pagination': ['pure_pagination/templates', 'pure_pagination/templates/pure_pagination', 'pure_pagination/templates/pure_pagination/index.html'],
},
)