timeloop/setup.py
2018-09-18 15:10:59 +05:30

20 lines
620 B
Python

# 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='looper',
version='1.0',
packages=['looper'],
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/looper",
include_package_data=True,
)