forked from goodtiding5/timeloop
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 658 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 658 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# please install python if it is not present in the system
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='timeloop',
version='1.0.6',
packages=['timeloop'],
license='MIT',
description='An elegant way to run period tasks.',
author='Sankalp Jonna',
author_email='sankalpjonna@gmail.com',
keywords=['tasks', 'jobs', 'periodic task', 'interval', 'periodic job', 'flask style', 'decorator'],
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/sankalpjonn/timeloop",
include_package_data=True,
)