-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (48 loc) · 1.49 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
"""
Flask-TaskX
----------
A Flask extension for creating and running tasks within the context of Flask applications.
Please refer to the online documentation for details.
Links
`````
* `documentation <http://packages.python.org/Flask-TaskX>`_
"""
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="flask-taskx",
version="1.1",
url="https://github.com/carrasquel/flask-taskx",
license="BSD",
author="Nelson Carrasquel",
author_email="[email protected]",
maintainer="Nelson Carrasquel",
maintainer_email="[email protected]",
description="A Flask extension for defining and running tasks",
long_description=long_description,
long_description_content_type="text/markdown",
py_modules=["flask_taskx"],
zip_safe=False,
platforms="any",
entry_points={
'console_scripts': [
'taskx = flask_taskx:cli',
],
},
install_requires=["Flask", "apscheduler", "peewee", "Click==7.0",],
tests_require=[
"nose",
"mock",
],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)