-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (26 loc) · 857 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
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
import fastentrypoints
dependencies = ["delay-timer @ git+https://[email protected]/jakeogh/delay-timer"]
config = {
"version": "0.1",
"name": "retry-on-exception",
"url": "https://github.com/jakeogh/retry-on-exception",
"license": "ISC",
"author": "Justin Keogh",
"author_email": "[email protected]",
"description": "Short explination of what it does _here_",
"long_description": __doc__,
"packages": find_packages(exclude=["tests"]),
"include_package_data": True,
"zip_safe": False,
"platforms": "any",
"install_requires": dependencies,
"entry_points": {
"console_scripts": [
"retry-on-exception-test=retry_on_exception.retry_on_exception_test:cli",
],
},
}
setup(**config)