pronoun-o-matic/setup.py

21 lines
511 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-05 22:28:31 +02:00
packages=find_packages() + ['.'],
2022-06-04 22:18:32 +02:00
package_dir={"": "./"},
2022-06-05 21:50:45 +02:00
entry_points={
"pronounomatic.plugins": [
"log = plugins.log_plugin:LogPlugin",
"mastodon = plugins.mastodon:MastodonPlugin",
2022-06-06 23:49:30 +02:00
"discord = plugins.discord:DiscordPlugin",
2022-06-05 21:50:45 +02:00
],
},
2022-06-04 22:18:32 +02:00
# Executables
scripts=["app.py"],
)