forked from Ruggiero-Santo/timeloop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 701 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (18 loc) · 701 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='flask-timeloop',
version='1.0.0',
packages=['timeloop'],
license = 'MIT',
description = 'An elegant way to run period tasks.',
author = 'Taavi Ansper',
author_email = 'taavi.ansperr@gmail.com',
keywords = ['tasks','jobs','periodic task','interval','periodic job', 'flask style', 'decorator', 'scheduler', 'scheduled fuction'],
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/TafkaMax/timeloop",
include_package_data=True,
)