diff options
author | 2015-05-10 17:40:30 +0200 | |
---|---|---|
committer | 2015-05-10 17:40:30 +0200 | |
commit | 816f959156a4d44a4b7444c27706c617c76ef5f0 (patch) | |
tree | cd3a7f9e2451020552a199cd73d7051be0d05c49 /locale/pavement.py | |
parent | Merge pull request #1409 from ktrhn/master (diff) | |
download | pyload-816f959156a4d44a4b7444c27706c617c76ef5f0.tar.xz |
Remove old CLI
Diffstat (limited to 'locale/pavement.py')
-rw-r--r-- | locale/pavement.py | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/locale/pavement.py b/locale/pavement.py index c2820fade..02aa110b5 100644 --- a/locale/pavement.py +++ b/locale/pavement.py @@ -55,11 +55,7 @@ setup( 'RSS plugins': ['feedparser'], }, # setup_requires=["setuptools_hg"], - entry_points={ - 'console_scripts': [ - 'pyLoadCore = pyLoadCore:main', - 'pyLoadCli = pyLoadCli:main' - ]}, + entry_points={'console_scripts': ['pyLoadCore = pyLoadCore:main']}, zip_safe=False, classifiers=[ "Development Status :: 5 - Production/Stable", @@ -218,11 +214,10 @@ def compile_js(): def generate_locale(): """ Generates localization files """ - EXCLUDE = ["BeautifulSoup.py", "pyload/cli", "web/locale", "web/ajax", "web/cnl", "web/pyload", + EXCLUDE = ["BeautifulSoup.py", "web/locale", "web/ajax", "web/cnl", "web/pyload", "setup.py"] makepot("core", path("pyload"), EXCLUDE, "./pyload.py\n") - makepot("cli", path("pyload") / "cli", [], includes="./pyload-cli.py\n") makepot("setup", "", [], includes="./pyload/setup.py\n") EXCLUDE = ["ServerThread.py", "web/media/default"] |