summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial/package/setup.py
blob: a59527bf4733ad50e30f6331501238fb25041080 (plain)
1
2
3
4
5
6
7
8
9
10
from setuptools import setup

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

setup(name='tutorial',
      install_requires=requires,
      )