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

# List of dependencies installed via `pip install -e .`
# by virtue of the Setuptools `install_requires` value below.
requires = [
    'pyramid',
    'waitress',
]

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