-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
52 lines (46 loc) · 1.67 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
from setuptools import setup, find_packages
VERSION_INFO = (0, 1, 5)
AUTHOR = "Aniket Sarkar"
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="Flask-Express",
version=".".join([str(v) for v in list(VERSION_INFO)]),
url="https://github.com/marktennyson/flask-express",
license="MIT",
author=AUTHOR,
author_email="aniketsarkar@yahoo.com",
description="interactive app like expressJs for flask.",
long_description=long_description,
long_description_content_type="text/markdown",
keywords=["flask", "flask-express", "Navycut"],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
platforms="any",
install_requires=[
"asgiref >= 3.4.1",
"Flask >= 2.0.0",
"munch >= 2.5.0",
],
extras_require={},
python_requires=">=3.6,<4",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Flask",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)