Externals are plugins again

This commit is contained in:
Daniel Dayley 2021-07-20 18:43:46 -06:00
parent 5b14b29693
commit 9d31102cf4

View File

@ -43,7 +43,7 @@ class CustomEggInfoCommand(egg_info) :
class CustomBuildExtCommand(build_ext) : class CustomBuildExtCommand(build_ext) :
pass pass
files = glob.glob('python-tool/externals/*.py') files = glob.glob('python-tool/plugins/*.py')
setup(name='python-tool', setup(name='python-tool',
version='1.0.0', version='1.0.0',
@ -53,7 +53,7 @@ setup(name='python-tool',
author_email='github@cronocide.com', author_email='github@cronocide.com',
description='', description='',
packages=find_packages(exclude=['tests']), packages=find_packages(exclude=['tests']),
package_data={"": ['externals/*.py']}, package_data={"": ['plugins/*.py']},
install_requires=['pyyaml',], install_requires=['pyyaml',],
scripts=['bin/python-tool'], scripts=['bin/python-tool'],
long_description=open('README.md').read(), long_description=open('README.md').read(),