]> git.scottworley.com Git - snek/blob - setup.py
Amir Rachum's entry_points example from https://amir.rachum.com/blog/2017/07/28/pytho...
[snek] / setup.py
1 from setuptools import setup
2
3 setup(
4 name='snek',
5 entry_points={
6 'console_scripts': [
7 'snek = snek:main',
8 ],
9 }
10 )