forked from mikeabrahamsen/Flask-Meld
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (51 loc) · 1.61 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-Meld
--------------
A way to meld your frontend and backend code
"""
import pathlib
from setuptools import setup
with open("flask_meld/__init__.py", "r") as f:
version = [
line.split(" = ")[1].strip()
for line in f.readlines()
if line.startswith("__version__")
][0].strip('"')
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
setup(
name="Flask-Meld",
version=version,
url="http://github.com/mikeabrahamsen/Flask-Meld/",
license="MIT",
author="Michael Abrahamsen",
author_email="[email protected]",
description="Meld is a framework for Flask that allows you to create dynamic user interfaces using Python and the Jinja2 templating engine.",
long_description=README,
long_description_content_type="text/markdown",
packages=["flask_meld"],
zip_safe=False,
include_package_data=True,
platforms="any",
install_requires=[
"Flask>=0.9",
"beautifulsoup4>=4",
"orjson>=3.4.6",
"flask-socketio>=5",
"gevent-websocket>=0.10.1",
"jinja2-simple-tags==0.3.1",
"click==7.1.2"
],
tests_require=["pytest"],
test_suite="tests",
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)