pronoun-o-matic/setup.py

22 lines
771 B
Python
Raw Normal View History

2022-06-04 22:18:32 +02:00
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="pronoun-o-matic",
version="1.0",
# Modules to import from other scripts:
2022-06-08 00:48:37 +02:00
packages=find_packages() + ["pronounomatic.core", "pronounomatic.plugins"],
package_dir={"pronounomatic": "src"},
2022-06-05 21:50:45 +02:00
entry_points={
2022-06-08 00:48:37 +02:00
"console_scripts": ["pronounomatic=pronounomatic.core.app:main"],
2022-06-05 21:50:45 +02:00
"pronounomatic.plugins": [
2022-06-08 00:48:37 +02:00
"log = pronounomatic.plugins.log_plugin:LogPlugin",
2022-06-08 02:25:12 +02:00
"mastodon = pronounomatic.plugins.mastodon:MastodonPlugin",
"discord = pronounomatic.plugins.discord:DiscordPlugin",
2022-06-08 19:04:21 +02:00
"gitea = pronounomatic.plugins.gitea:GiteaPlugin",
2022-06-08 20:21:14 +02:00
"github = pronounomatic.plugins.github:GithubPlugin",
2022-06-05 21:50:45 +02:00
],
},
2022-06-04 22:18:32 +02:00
)