-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
31 lines (27 loc) · 830 Bytes
/
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
from setuptools import setup
__version__ = '2.0'
__author__ = 'Eli Uriegas'
retry_classifiers = [
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
]
description = 'A small and simple library to retry functions'
setup(
name='retry.it',
version=__version__,
author=__author__,
author_email='[email protected]',
url='https://github.com/seemethere/retry',
py_modules=['retry'],
description=description,
long_description=description,
license='MIT',
classifiers=retry_classifiers,
install_requires=['decorator'],
setup_requires=['pytest-runner'],
tests_requires=['pytest'],
)