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

Sigh #6

Merged
merged 1 commit into from
Aug 25, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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",
)