diff options
| author | Shivesh Mandalia <shivesh.mandalia@outlook.com> | 2020-02-28 18:50:52 +0000 |
|---|---|---|
| committer | Shivesh Mandalia <shivesh.mandalia@outlook.com> | 2020-02-28 18:50:52 +0000 |
| commit | 08b7980611d47aa90dc50a18bc02976e670ab720 (patch) | |
| tree | 4f341ceeba839dbb2cabe960a1abc508d6d8c6b5 /setup.py | |
| parent | 402f8b53dd892b8fd44ae5ad45eac91b5f6b3750 (diff) | |
| download | GolemFlavor-08b7980611d47aa90dc50a18bc02976e670ab720.tar.gz GolemFlavor-08b7980611d47aa90dc50a18bc02976e670ab720.zip | |
rename utils to golemflavor everywhere
Diffstat (limited to 'setup.py')
| -rwxr-xr-x | setup.py | 20 |
1 files changed, 9 insertions, 11 deletions
@@ -58,15 +58,13 @@ setup( packages=find_packages(), install_requires=INSTALL_REQUIRES, setup_requires=['setuptools>=38.6.0'], - entry_points={ - 'console_scripts': [ - 'contour=scripts.contour::main', - 'fr=scripts.fr::main', - 'mc_texture=scripts.mc_texture::main', - 'mc_unitary=scripts.mc_unitary::main', - 'mc_x=scripts.mc_x::main', - 'plot_sens=scripts.plot_sens::main', - 'sens=scripts.sens::main' - ] - } + scripts=[ + 'scripts/contour.py', + 'scripts/fr.py', + 'scripts/mc_texture.py', + 'scripts/mc_unitary.py', + 'scripts/mc_x.py', + 'scripts/plot_sens.py', + 'scripts/sens.py' + ] ) |
