Skip to content
This repository has been archived by the owner on Apr 24, 2023. It is now read-only.

Commit

Permalink
Merge pull request #6 from zlangley/master
Browse files Browse the repository at this point in the history
Sigh
  • Loading branch information
zlangley authored Aug 25, 2017
2 parents c9c47da + 0030ce3 commit c29c24c
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ A command line tool for executing custom python scripts.

* Install clr
```
$ pip install git+/~https://github.com/color/clr.git@v0.1.4
$ pip install git+/~https://github.com/color/clr.git@v0.1.5
```

* Create a custom command
Expand Down
2 changes: 1 addition & 1 deletion clr/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.1.4"
__version__ = "0.1.5"

# This is the main entry point for the tool.
from clr.main import main
2 changes: 1 addition & 1 deletion clr/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from past.builtins import execfile
from builtins import zip
from builtins import object
from builtins import intern
from past.builtins import intern
import inspect
import sys
import textwrap
Expand Down
2 changes: 1 addition & 1 deletion clr/main.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from __future__ import absolute_import
from __future__ import print_function

from builtins import intern
from past.builtins import intern
from builtins import range
import optparse
import sys
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
future
future==0.16.0
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,8 @@
entry_points = {
"console_scripts": [ "clr = clr:main" ],
},
install_requires=[
"future==0.16.0",
],
license = "MIT",
)

0 comments on commit c29c24c

Please sign in to comment.