-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 1.11 KB
/
setup.py
File metadata and controls
37 lines (35 loc) · 1.11 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
#! /usr/bin/env python
from setuptools import setup, find_packages
from codecs import open
import versioneer
setup (
name = "retryp",
version = versioneer.get_version (),
description = "Well-featured retry decorator",
long_description = open ("README.rst", 'r', encoding = 'utf-8').read (),
cmdclass = versioneer.get_cmdclass (),
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: "
+ "GNU Lesser General Public License v3 or later (LGPLv3+)",
"Topic :: Utilities",
],
keywords = "decorator exception retry retrying",
author = "J C Lawrence",
author_email = "claw@kanga.nu",
url = "https://github.com/clearclaw/retryp",
license = "LGPL v3.0",
packages = find_packages (exclude = ["tests",]),
test_suite = "tests",
package_data = {
},
zip_safe = True,
install_requires = [line.strip ()
for line in open ("requirements.txt", 'r',
encoding = 'utf-8').readlines ()],
entry_points = {
"console_scripts": [
],
},
)