-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 925 Bytes
/
setup.py
File metadata and controls
31 lines (27 loc) · 925 Bytes
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
from pathlib import Path
HERE = Path(__file__).parent
with open(HERE / "README.md", encoding="utf-8") as readme:
long_description = readme.read()
setup(
name='another-exponential-backoff',
version='1.0.0',
packages=['backoff'],
url='https://github.com/dragdev-studios/exponential-backoff-python',
project_urls={
"Issue Tracker": "https://github.com/dragdev-studios/exponential-backoff-python",
"Repository": "https://github.com/dragdev-studios/exponential-backoff-python"
},
include_package_data=True,
license='MIT',
author='EEKIM10',
author_email='eek@clicksminuteper.net',
description='Simple exponential backoff script',
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.6",
extras_require={
"tests": ["pytest"],
"docs": ["sphinx"]
}
)