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
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
|
|
||||||
|
with open('README.md') as f:
|
||||||
|
long_description = f.read()
|
||||||
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='soundchanger',
|
name='soundchanger',
|
||||||
version='0.1.0',
|
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.
|
CLI entry point of the program.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
parser = argparse.ArgumentParser(prog="soundchanger")
|
parser = argparse.ArgumentParser()
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"changes",
|
"changes",
|
||||||
help="Sound change to be applied. Multiple sound changes should be separated by a space."
|
help="Sound change to be applied. Multiple sound changes should be separated by a space."
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user