-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (40 loc) · 1.04 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/env python
# -*- coding: utf-8 -*-
from setuptools import setup
project = "barrel"
setup(
name=project,
version='0.1',
url='https://github.com/47bytes/flask-big-app',
description='Barrel - Flask Big App',
author='RT',
author_email='[email protected]',
packages=["flask barrel"],
include_package_data=True,
zip_safe=False,
install_requires=[
'Flask',
'Flask-Admin',
'Flask-WTF',
'Flask-Script',
'Flask-Testing',
'Flask-Login',
'Flask-Mail',
'Flask-Cache',
'Flask-OpenID',
'peewee',
'flask-peewee',
'wtf-peewee',
'nose',
],
test_suite='tests',
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries'
]
)