forked from eshaan7/Flask-Shell2HTTP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (44 loc) · 1.58 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
"""
# Flask-Shell2HTTP
A minimalist REST API wrapper for python's subprocess API.<br/>
Execute shell commands asynchronously and safely from flask's endpoints.
##### Docs & Example usage on GitHub: https://github.com/eshaan7/flask-shell2http
"""
from setuptools import setup
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
GITHUB_URL = "https://github.com/eshaan7/flask-shell2http"
setup(
name="Flask-Shell2HTTP",
version="1.5.0",
url=GITHUB_URL,
license="BSD",
author="Eshaan Bansal",
author_email="[email protected]",
description="A minimalist REST API wrapper for python's subprocess API.",
long_description=long_description,
long_description_content_type="text/markdown",
py_modules=["flask_shell2http"],
zip_safe=False,
packages=["flask_shell2http"],
include_package_data=True,
platforms="any",
python_requires=">= 3.6",
install_requires=["Flask", "Flask-Executor"],
classifiers=[
"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",
],
keywords="flask shell2http subprocess python",
project_urls={
"Documentation": GITHUB_URL,
"Funding": "https://www.paypal.me/eshaanbansal",
"Source": GITHUB_URL,
"Tracker": "{}/issues".format(GITHUB_URL),
},
)