Update setup.py

This commit is contained in:
Patrick Elmer 2023-03-11 13:15:20 +09:00
parent d80eed02d8
commit b9defdedfd
2 changed files with 15 additions and 2 deletions

View File

@ -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'
]
}
)

View File

@ -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."