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