-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
39 lines (34 loc) · 1.16 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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='Flask-BS4',
version='5.3.1.1.dev',
url='https://github.com/hfilimonescu/flask-bs4',
license='MIT',
author='Horia Filimonescu',
author_email='horia.filimonescu+github@gmail.com',
description='Include Bootstrap4 in your Flask project',
long_description=read('README.md'),
long_description_content_type="text/markdown",
packages=['flask_bs4'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'Flask>=0.8',
'Flask-WTF>=0.14.0',
'WTForms>=2.3.1',
'dominate',
'visitor',
],
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',
'Framework :: Flask',
])