-
Notifications
You must be signed in to change notification settings - Fork 38
/
setup.py
62 lines (54 loc) · 1.51 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
from setuptools import setup, find_packages
import sys, os
version = '0.7'
readme = open('README.txt').read()
changes = open("CHANGES.txt").read()
description = """
%s
Changes
=======
%s""" % (readme, changes)
setup(name="libopencore",
version=version,
description="a library of functions for connecting external apps to/from opencore",
long_description=description,
classifiers=[],
keywords='',
author='Ethan Jucovy',
author_email='[email protected]',
url='',
license='GPL',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
"httplib2",
"elementtree",
],
extras_require={
"deliverance": [
"Deliverance>=0.4",
"WebOb",
"WSGIProxy",
"setuptools",
],
"proxy": [
"WSGIFilter",
],
"twirlip": [
"eyvind",
"signedheaders",
"transcluder",
]
},
entry_points="""
[paste.app_factory]
proxy = libopencore.http_proxy:app_factory
mock_opencore = libopencore.mock_opencore:app_factory
[paste.composite_factory]
main = libopencore.wsgi:composite_factory
[paste.filter_factory]
deliverance = libopencore.deliverance_middleware:filter_factory
transcluder = libopencore.transcluder_middleware:create_transcluder
""",
)