Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
add module decorator
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Feb 5, 2015
1 parent fa83825 commit 14329f6
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/pymyinstall/packaged/packaged_config.py
Expand Up @@ -61,7 +61,8 @@ def small_installation():
ModuleInstall("pyensae", "github", "sdpython"),
ModuleInstall("ensae_teaching_cs", "github", "sdpython"),
#
ModuleInstall("typecheck-decorator", "github", "prechelt", mname="typecheck"),
ModuleInstall("typecheck-decorator", "pip", mname="typecheck"),
ModuleInstall("decorator", "pip"),
#
ModuleInstall("requests", "pip"),
#ModuleInstall("PyQt", "wheel", mname="PyQt4"),
Expand Down Expand Up @@ -105,6 +106,7 @@ def complete_installation():
#ModuleInstall("setuptools", "wheel"), # removed with 3.4
#ModuleInstall("pip", "wheel"), # removed with 3.4
ModuleInstall("typecheck-decorator", "pip", mname="typecheck"),
ModuleInstall("decorator", "pip"),
#
ModuleInstall("six", "pip"),
ModuleInstall("lxml", "wheel"),
Expand Down Expand Up @@ -176,8 +178,6 @@ def complete_installation():
ModuleInstall("pyensae", "github", "sdpython"),
ModuleInstall("ensae_teaching_cs", "github", "sdpython"),
#
ModuleInstall("typecheck-decorator", "github", "prechelt", mname="typecheck"),
#
ModuleInstall("selenium", "pip"),
ModuleInstall("Pillow", "wheel", mname = "PIL"),
ModuleInstall("pygame", "wheel"),
Expand Down Expand Up @@ -218,7 +218,6 @@ def complete_installation():
ModuleInstall("requests_oauthlib", "pip"),
ModuleInstall("antlr4-python3-runtime", "pip", mname="antlr4"),
#ModuleInstall("unqlite", "pip"), # key/value store (NoSQL)
#ModuleInstall("typecheck-decorator", "pip", mname="typecheck"),
ModuleInstall("pycontracts", "pip", mname="contracts"),
ModuleInstall("ansiconv", "pip"), # shell to plain
ModuleInstall("ansi2html", "pip"), # shell to HTML
Expand Down

0 comments on commit 14329f6

Please sign in to comment.