-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
74 lines (65 loc) · 2.27 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
from setuptools import setup,find_packages
version_info = (0, 1, 0)
version = ".".join([str(v) for v in version_info])
author = "Aniket Sarkar"
# basedir = os.path.abspath(os.path.dirname(__file__))
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="Navycut",
version=version,
url="https://github.com/flaskAio/navycut",
license="MIT",
author=author,
author_email="aniketsarkar@yahoo.com",
description="Fullstack web framework using flask",
long_description=long_description,
long_description_content_type="text/markdown",
keywords=["flask", "django", "Navycut"],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
platforms="any",
install_requires=[
"Flask-Admin>=1.6.0",
"Flask-Bootstrap>=3.3.7.1",
"Flask-Cors>=3.0.10",
"flask-mailman>=0.3.0",
"Flask-Login>=0.5.0",
"Flask-Migrate>=2.7.0",
"Flask-SQLAlchemy>=2.5.1",
"Flask-WTF>=0.15.1",
"nc-console>=0.0.4",
"python-dotenv>=0.17.1",
"SQLAlchemy-JSONField>=1.0.0",
"WTForms<3.0.2",
"WTForms-SQLAlchemy>=0.2",
"pillow>=8.2.0",
"Flask-Express>=0.1.4" # flask-express will maintain the default flask package and it's version.
],
extras_require={},
python_requires=">=3.6,<4",
entry_points={
"console_scripts":[
"navycut=navycut.__main__:_main"
]
},
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",
],
)