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 38 39 40 41 42
|
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md')) as f:
README = f.read()
with open(os.path.join(here, 'CHANGELOG.txt')) as f:
CHANGES = f.read()
setup(
name='paginate',
version='0.5.7',
description="Divides large result sets into pages for easier browsing",
long_description=README + '\n\n' + CHANGES,
long_description_content_type="text/markdown",
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Framework :: Pyramid',
'Framework :: Flask',
'Framework :: Pylons',
'Framework :: Django',
],
keywords='pagination paginate pages',
author='Christoph Haas',
author_email='email@christoph-haas.de',
url='https://github.com/Signum/paginate',
license='MIT',
packages=find_packages(),
extras_require={
"dev": ["pytest", "tox"],
"lint": ["black"],
},
include_package_data=True,
zip_safe=False,
entry_points=""" """,
)
|