-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (43 loc) · 1.12 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
44
45
46
47
from setuptools import setup, find_packages
requires = [
'coverage==4.0a5',
'Flask==0.10.1',
'itsdangerous==0.24',
'Jinja2==2.7.3',
'MarkupSafe==0.23',
'nose==1.3.4',
'pep8==1.6.2',
'Werkzeug==0.10.1',
'unittest2==1.0.1',
'WTForms==2.0.2',
'pymongo==2.8',
'mongoengine==0.9.0'
]
tests_require = requires
docs_extras = [
'Sphinx',
'docutils',
'repoze.sphinx.autointerface']
setup(name='fivesquare',
version='0.1',
description='fivesquare',
classifiers=[
"Programming Language :: Python",
"Framework :: Flask",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application", ],
author='',
author_email='vpkcareer2011@gmail.com',
url='',
keywords='web wsgi flask pymongo mongoengine',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
test_suite='nose.collector',
install_requires=requires,
tests_require=tests_require,
extras_require={
'docs': docs_extras, },
entry_points="""\
""",
)