Fix install command.
This commit is contained in:
parent
2e988a0df7
commit
04af2e6095
4
setup.py
4
setup.py
|
@ -2,9 +2,9 @@ from setuptools import setup, find_packages
|
|||
|
||||
setup(
|
||||
name='chime',
|
||||
version='0.1.0',
|
||||
version='0.1.1',
|
||||
packages=find_packages(include=['chime', 'chime.*']),
|
||||
entry_points={
|
||||
'console_scripts': ['my-command=exampleproject.example:main.py']
|
||||
'console_scripts': ['chime=chime.main:main']
|
||||
}
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue