diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..1a75d4a --- /dev/null +++ b/setup.cfg @@ -0,0 +1,11 @@ +[metadata] +license_file = LICENSE + + +[bdist_wheel] +universal=1 + +[tool:pytest] +addopts = --verbose +testpaths = tests +python_files = *.py diff --git a/setup.py b/setup.py index d375825..23c658a 100644 --- a/setup.py +++ b/setup.py @@ -10,9 +10,10 @@ setup( name='paginate', - version='0.5.6', + 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',