timeloop/setup.py

21 lines
626 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(
2018-09-18 13:19:06 +02:00
name='timeloop',
2018-09-18 11:40:59 +02:00
version='1.0',
2018-09-18 13:19:06 +02:00
packages=['timeloop'],
2018-09-18 11:40:59 +02:00
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",
2018-09-18 13:19:06 +02:00
url="https://github.com/sankalpjonn/timeloop",
2018-09-18 11:40:59 +02:00
include_package_data=True,
)