Simplify setup.py in arbitrary_bytes_repo

This commit is contained in:
Anthony Sottile 2018-06-03 20:56:07 -07:00
parent d4a25b2ecf
commit 51cf46e660
3 changed files with 3 additions and 6 deletions

View file

@ -1,11 +1,8 @@
from setuptools import find_packages
from setuptools import setup
setup(
name='python3_hook',
version='0.0.0',
packages=find_packages('.'),
entry_points={
'console_scripts': ['python3-hook = python3_hook.main:func'],
},
py_modules=['python3_hook'],
entry_points={'console_scripts': ['python3-hook=python3_hook:main']},
)