forked from iterative/dvc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add requirements.txt / work in a virtualenv;
add development / deployment instructions in README; add single file build for osx
- Loading branch information
Showing
6 changed files
with
75 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,9 @@ neatlynx/__pycache__ | |
.idea | ||
cache | ||
*.pyc | ||
|
||
cache | ||
.dvc.conf.lock | ||
.DS_Store | ||
build/ | ||
dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
echo "building osx" | ||
# rm -rf build/ dist/ | ||
pyinstaller --onefile --console \ | ||
--clean \ | ||
--noconfirm \ | ||
--specpath dist/ \ | ||
dvc2.py | ||
mv dist/dvc2 dist/dvc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
from __future__ import print_function | ||
""" | ||
main entry point / argument parsing for dvc | ||
NB: for ${REASONS}, cannot be named dvc.py. trust me. | ||
""" | ||
|
||
from dvc import * | ||
|
||
if __name__ == '__main__': | ||
print('hello, world') | ||
print('hello world, outside main') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
appdirs==1.4.3 | ||
appnope==0.1.0 | ||
backports.shutil-get-terminal-size==1.0.0 | ||
boto==2.46.1 | ||
configparser==3.5.0 | ||
decorator==4.0.11 | ||
enum34==1.1.6 | ||
fasteners==0.14.1 | ||
ipython==5.3.0 | ||
ipython-genutils==0.2.0 | ||
monotonic==1.3 | ||
nose==1.3.7 | ||
packaging==16.8 | ||
pathlib2==2.2.1 | ||
pexpect==4.2.1 | ||
pickleshare==0.7.4 | ||
prompt-toolkit==1.0.14 | ||
ptyprocess==0.5.1 | ||
Pygments==2.2.0 | ||
pyparsing==2.2.0 | ||
requests==2.13.0 | ||
scandir==1.5 | ||
simplegeneric==0.8.1 | ||
six==1.10.0 | ||
traitlets==4.3.2 | ||
wcwidth==0.1.7 |