]> git.scottworley.com Git - snek/blob - setup.py
Build with nix
[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 )