-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
47 lines (44 loc) · 1.28 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
"""
Flask-Lin
------------------
"""
import io
import setuptools
with io.open("README.md", "rt", encoding="utf8") as f:
long_description = f.read()
setuptools.setup(
name="Lin-CMS",
version="0.4.11",
url="https://pypi.org/project/Lin-CMS/",
license="MIT",
author="pedroGao",
author_email="[email protected]",
maintainer="sunlin92",
maintainer_email="[email protected]",
description="A simple and practical CMS implememted by flask",
long_description=long_description,
long_description_content_type="text/markdown",
keywords=["flask", "CMS", "authority", "jwt", "openapi"],
packages=setuptools.find_packages("src"),
package_dir={"": "src"},
zip_safe=False,
platforms="any",
install_requires=[
"Flask==2.0.3",
"Flask_JWT_Extended==4.3.1",
"Flask_SQLAlchemy==2.5.1",
"WTForms==3.0.1",
"tablib==3.2.0",
"spectree==0.7.6",
"SQLAlchemy==1.4.46",
"pydantic==1.9.2",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
],
)