-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
69 lines (61 loc) · 1.43 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
from setuptools import find_packages
from setuptools import setup
import os
import sys
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
NEWS = open(os.path.join(here, 'NEWS.txt')).read()
version = '0.4.1'
install_requires = [
'breadability',
'fakeredis',
# 'gevent',
# 'gunicorn',
'httpcode',
'lxml',
'Mako',
'pyramid',
'python-dateutil',
'pyramid_mako',
'pyScss',
'pytz',
'redis',
'requests',
'waitress',
]
tests_require = [
'nose',
'coverage',
'webtest',
'mock',
'pylint',
'pep8',
'WebTest',
]
if sys.version_info < (2, 7):
install_requires.append("unittest2")
setup(
name='bookie_parser',
version=version,
description="Readable and Content related tools for Bookie",
long_description=README + '\n\n' + NEWS,
classifiers=[
# Get strings from
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
],
keywords='bookmarks content parsing readable tagging tags',
author='Rick Harding',
author_email='[email protected]',
url='docs.bmark.us',
license='BSD',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
tests_require=tests_require,
extras_require={'test': tests_require},
entry_points="""\
[paste.app_factory]
main = bookie_parser:main
"""
)