pronoun-o-matic/setup.py

15 lines
351 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={"": "./"},
entry_points={"pronounomatic.plugins": "test = plugins.log_plugin:LogPlugin"},
# Executables
scripts=["app.py"],
)