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

requires = [
    'pyramid',
    'pyramid_debugtoolbar',
    'waitress',
]

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