-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
73 lines (66 loc) · 1.64 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
70
71
72
73
# -*- coding: utf-8 -*-
import os
from setuptools import setup
from setuptools import find_packages
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
setup(
name='kiberpipa.bookshelf',
version='0.1.dev0',
description='Simple interface talking to solr full of books metadata',
long_description=read('README.rst') + read('HISTORY.rst'),
classifiers=[
"Programming Language :: Python",
"Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
keywords='web wsgi pylons pyramid',
author='Domen Kožar',
author_email='[email protected]',
url='',
license='BSD',
packages=find_packages(),
install_requires=[
'setuptools',
'pyramid>=1.4a4',
'pyramid_tm',
'raven',
'pyramid_jinja2',
'pysolr',
'dogpile.cache',
'unittest2',
'mock',
'ordereddict',
'simplejson',
'webhelpers',
'iptools'
# 'pyramid_webassets',
# 'pyramid_marrowmailer',
],
extras_require={
'test': [
'nose',
'nose-selecttests',
'coverage',
'flake8',
],
'development': [
'zest.releaser',
'Sphinx',
'pyramid_debugtoolbar',
'waitress',
],
'production': [
'gunicorn',
'supervisor',
],
},
entry_points="""
[paste.app_factory]
main = kiberpipa.bookshelf:main
[console_scripts]
""",
paster_plugins=['pyramid'],
include_package_data=True,
zip_safe=False,
)