pronoun-o-matic/setup.py

20 lines
448 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:
packages=find_packages(),
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-04 22:18:32 +02:00
# Executables
scripts=["app.py"],
)