-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
43 lines (41 loc) · 1.07 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
#!/usr/bin/python
# -*- coding: utf-8 -*-
__author__ = 'guotie'
from setuptools import setup
setup(
name='flaskbbs',
version='0.5',
url='<enter URL here>',
license='MIT',
author='guotie',
author_email='[email protected]',
description='A simple bbs base on flask framework.',
long_description=__doc__,
packages=['flaskbbs'],
zip_safe=False,
platforms='any',
install_requires=[
'Flask',
'Flask-Cache',
'Flask-SQLAlchemy',
'Flask-WTF',
'Flask-Testing',
'Flask-Script',
'Flask-Login',
'Flask-Babel',
'Flask-Themes',
'sqlalchemy',
'markdown2',
'blinker',
'nose',
],
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
]
)