-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
65 lines (57 loc) · 1.74 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
from setuptools import find_packages, setup
def readfile(name):
with open(name) as f:
return f.read()
readme = readfile('README.rst')
changes = readfile('CHANGES.rst')
install_requires = [
'pyramid >= 1.9',
'zope.interface',
]
docs_require = [
'Sphinx',
'pylons-sphinx-themes',
'repoze.sphinx.autointerface',
]
tests_require = [
'pytest',
'pytest-cov',
'WebTest',
]
setup(
name='pyramid_retry',
version='2.1.1',
description=(
'An execution policy for Pyramid that supports retrying requests '
'after certain failure exceptions.'
),
long_description=readme + '\n\n' + changes,
author='Michael Merickel',
author_email='pylons-discuss@googlegroups.com',
url='https://github.com/Pylons/pyramid_retry',
packages=find_packages('src', exclude=['tests']),
package_dir={'': 'src'},
include_package_data=True,
install_requires=install_requires,
extras_require={
'docs': docs_require,
'testing': tests_require,
},
zip_safe=False,
keywords='pyramid wsgi retry attempt',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Pyramid',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
)