-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
37 lines (33 loc) · 1.06 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
import setuptools
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the relevant file
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='Flask-AdminLTE3',
version='1.0.9',
author='Jialiang Shi',
author_email='[email protected]',
description='AdminLTE3 Theme for Flask-Admin.',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/shijl0925/Flask-AdminLTE3',
license='MIT',
packages=setuptools.find_packages(),
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'flask-admin>=1.5.7',
'Flask>=0.8',
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
"Topic :: Software Development :: Libraries :: Python Modules",
],
)