Update setup.py
This commit is contained in:
parent
d80eed02d8
commit
b9defdedfd
15
setup.py
15
setup.py
@ -1,8 +1,21 @@
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
|
||||
with open('README.md') as f:
|
||||
long_description = f.read()
|
||||
|
||||
|
||||
setup(
|
||||
name='soundchanger',
|
||||
version='0.1.0',
|
||||
packages=find_packages()
|
||||
description='Apply sound changes to words',
|
||||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
author="Patrick Elmer",
|
||||
packages=find_packages(),
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'sc=soundchanger.change:main'
|
||||
]
|
||||
}
|
||||
)
|
||||
@ -10,7 +10,7 @@ def main():
|
||||
CLI entry point of the program.
|
||||
"""
|
||||
|
||||
parser = argparse.ArgumentParser(prog="soundchanger")
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument(
|
||||
"changes",
|
||||
help="Sound change to be applied. Multiple sound changes should be separated by a space."
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user