timeloop/setup.py

21 lines
620 B
Python
Raw Normal View History

2018-09-18 11:40:59 +02:00
# 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,
)