Steve Piercy
2017-10-22 5ba44d4fd4c3bcec0ab550bbb7bfe25a9b296118
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from setuptools import setup
 
requires = [
    'pyramid',
    'waitress',
    'pyramid_chameleon'
]
 
setup(name='tutorial',
      install_requires=requires,
      entry_points="""\
      [paste.app_factory]
      main = tutorial:main
      """,
)