File: setup.py

package info (click to toggle)
python-plaster-pastedeploy 0.5-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 316 kB
  • sloc: python: 639; makefile: 12
file content (20 lines) | stat: -rw-r--r-- 522 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages

setup(
    name="FakeApp",
    version="1.0",
    packages=find_packages(),
    entry_points={
        'paste.app_factory': """
        basic_app=fakeapp.apps:make_basic_app
        other=fakeapp.apps:make_basic_app2
        configed=fakeapp.configapps:SimpleApp.make_app
        """,
        'paste.filter_factory': """
        caps=fakeapp.apps:make_cap_filter
        """,
        'paste.server_factory': """
        fake=fakeapp.apps:make_fake_server
        """,
    },
)