summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial/debugtoolbar/setup.py
blob: 5fee31f011178a4851e9d2f67ea9c804ad357c8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup

# List of dependencies installed via `pip install -e .`.
# by virtue of the Setuptools `install_requires` value below.
requires = [
    'pyramid',
    'pyramid_debugtoolbar',
    'waitress',
]

setup(
    name='tutorial',
    install_requires=requires,
    entry_points={
        'paste.app_factory': [
            'main = tutorial:main'
        ],
    },
)