edge-tts/setup.cfg

38 lines
856 B
INI
Raw Normal View History

2021-06-05 21:49:14 +00:00
[metadata]
name = edge-tts
version = 6.1.0
2021-06-05 21:49:14 +00:00
author = rany
author_email = ranygh@riseup.net
description = Microsoft Edge's TTS
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/rany2/edge-tts
project_urls =
Bug Tracker=https://github.com/rany2/edge-tts/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: OS Independent
[options]
package_dir=
= src
packages = find:
python_requires = >=3.7
# Dependencies are in setup.py for GitHub's dependency graph.
2021-06-05 21:49:14 +00:00
[options.packages.find]
where=src
[options.entry_points]
console_scripts =
2021-12-07 20:09:43 +00:00
edge-tts = edge_tts.__main__:main
edge-playback = edge_playback.__main__:_main
2023-01-04 22:56:01 +00:00
[options.extras_require]
dev =
black
isort
mypy
pylint