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

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

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