21 lines
465 B
Python
21 lines
465 B
Python
from setuptools import setup, find_packages
|
|
|
|
|
|
with open('README.md') as f:
|
|
long_description = f.read()
|
|
|
|
|
|
setup(
|
|
name='soundchanger',
|
|
version='0.1.0',
|
|
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'
|
|
]
|
|
}
|
|
) |