-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (35 loc) · 1.3 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
from setuptools import find_packages, setup
with open('README.md', 'r') as readme:
long_description = readme.read()
setup(
name='django-keyset-pagination-plus',
version='0.9.9',
description='Keyset Pagination (seek method) for django.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://bitbucket.org/schinckel/django-keyset-pagination',
author='Matthew Schinckel',
author_email='[email protected]',
packages=find_packages('src', exclude=['*.tests', '*.tests.*', 'tests.*', 'tests']),
package_dir={'': 'src'},
include_package_data=True,
package_data={},
python_requires='>=2.7',
install_requires=[
'django'
],
setup_requires=["pytest-runner", ],
tests_require=["pytest", ],
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)