-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (44 loc) · 1.46 KB
/
Copy pathsetup.py
File metadata and controls
48 lines (44 loc) · 1.46 KB
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
43
44
45
46
47
48
# -*- coding: utf-8 -*-
"""paginator module setup"""
from setuptools import setup
import py_paginator
def readme():
with open('README.md', 'r') as f:
return f.read()
setup(
name=py_paginator.__title__,
version=py_paginator.__version__,
license=py_paginator.__license__,
author=py_paginator.__author__,
author_email=py_paginator.__email__,
description=py_paginator.__description__,
long_description=readme(),
long_description_content_type='text/markdown',
url=py_paginator.__uri__,
packages=['py_paginator'],
include_package_data=True,
platforms='any',
keywords='paginator py_paginator py-paginator pagination',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Page Counters',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
python_requires='>=2.7',
setup_requires=[
'pytest-runner',
],
tests_require=[
'pytest',
],
)