|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=61", "wheel"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "ovos-tts-plugin-cotovia" |
| 7 | +dynamic = ["version"] |
| 8 | +description = "A galician/spanish tts plugin for OVOS" |
| 9 | +license = {text = "Apache-2.0"} |
| 10 | +authors = [ |
| 11 | + {name = "JarbasAi", email = "jarbasai@mailfence.com"} |
| 12 | +] |
| 13 | +keywords = ["mycroft", "ovos", "plugin", "tts"] |
| 14 | +classifiers = [ |
| 15 | + "Development Status :: 3 - Alpha", |
| 16 | + "Intended Audience :: Developers", |
| 17 | + "Topic :: Text Processing :: Linguistic", |
| 18 | + "License :: OSI Approved :: Apache Software License", |
| 19 | + "Programming Language :: Python :: 2", |
| 20 | + "Programming Language :: Python :: 2.7", |
| 21 | + "Programming Language :: Python :: 3", |
| 22 | + "Programming Language :: Python :: 3.0", |
| 23 | + "Programming Language :: Python :: 3.1", |
| 24 | + "Programming Language :: Python :: 3.2", |
| 25 | + "Programming Language :: Python :: 3.3", |
| 26 | + "Programming Language :: Python :: 3.4", |
| 27 | + "Programming Language :: Python :: 3.5", |
| 28 | + "Programming Language :: Python :: 3.6", |
| 29 | +] |
| 30 | +dependencies = [ |
| 31 | + "ovos-plugin-manager>=1.0.0,<3.0.0", |
| 32 | +] |
| 33 | + |
| 34 | +[project.urls] |
| 35 | +Homepage = "https://github.com/OpenVoiceOS/ovos-tts-plugin-cotovia" |
| 36 | + |
| 37 | +[project.entry-points."opm.tts"] |
| 38 | +"ovos-tts-plugin-cotovia" = "ovos_tts_plugin_cotovia:CotoviaTTSPlugin" |
| 39 | + |
| 40 | +[project.entry-points."opm.tts.config"] |
| 41 | +"ovos-tts-plugin-cotovia.config" = "ovos_tts_plugin_cotovia:CotoviaTTSPluginConfig" |
| 42 | + |
| 43 | +[tool.setuptools.dynamic] |
| 44 | +version = {attr = "ovos_tts_plugin_cotovia.version.__version__"} |
| 45 | + |
| 46 | +[tool.setuptools.packages.find] |
| 47 | +where = ["."] |
| 48 | +include = ["ovos_tts_plugin_cotovia*"] |
| 49 | + |
| 50 | +[tool.setuptools.package-data] |
| 51 | +ovos_tts_plugin_cotovia = [ |
| 52 | + "bin/*", |
| 53 | + "data/**/*", |
| 54 | +] |
0 commit comments