blob: f0a79823d7dc7a61f8bcadb87758bec03bd8ffee [file] [log] [blame]
from setuptools import setup
setup(
name="notbuildstream",
version="0.1",
py_modules=["notbuildstream"],
install_requires=["Click", "pluginbase"],
entry_points="""
[console_scripts]
notbst=notbuildstream:cli
""",
)