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

requires = [
    'pyramid',
    'pyramid_chameleon',
    'waitress',

]

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