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

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

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