]> git.scottworley.com Git - snek/blob - setup.py
Adding py_modules fixes it
[snek] / setup.py
1 from setuptools import setup
2
3 setup(
4 name='snek',
5 py_modules=['snek'],
6 entry_points={
7 'console_scripts': [
8 'snek = snek:main',
9 ],
10 }
11 )