19 lines
448 B
Python
19 lines
448 B
Python
#!/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={"": "./"},
|
|
entry_points={
|
|
"pronounomatic.plugins": [
|
|
"log = plugins.log_plugin:LogPlugin",
|
|
"mastodon = plugins.mastodon:MastodonPlugin",
|
|
],
|
|
},
|
|
# Executables
|
|
scripts=["app.py"],
|
|
)
|