File tree Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 1
1
* .pyc
2
+ * .egg *
3
+ dist /
4
+ build /
Original file line number Diff line number Diff line change 1
1
"""Flask-DbShell-------------
2
2
Django-like dbshell
3
3
"""
4
- from setuptools import setup
4
+ from setuptools import setup , find_packages
5
5
6
6
7
7
setup (
13
13
author_email = 'ffeast@gmail.com' ,
14
14
description = 'Django-like dbshell' ,
15
15
long_description = __doc__ ,
16
- py_modules = ['flask_sqlite3' ],
17
- # if you would be using a package instead use packages instead
18
- # of py_modules:
19
- # packages=['flask_sqlite3'],
20
16
zip_safe = False ,
17
+ packages = find_packages (),
21
18
include_package_data = True ,
22
19
platforms = 'any' ,
23
20
install_requires = [
24
21
'Flask' ,
25
- 'mock'
26
22
],
23
+ tests_require = [
24
+ 'mock>=1.0.1'
25
+ ],
26
+ test_suite = 'tests' ,
27
27
classifiers = [
28
28
'Environment :: Web Environment' ,
29
29
'Intended Audience :: Developers' ,
You can’t perform that action at this time.
0 commit comments