From 669aed9ec7261c49c49ed26c31f218e42faa491a Mon Sep 17 00:00:00 2001 From: zlg Date: Wed, 10 Oct 2018 19:44:18 -0700 Subject: cli: Add "import" command Currently the import command will only accept YAML files, but is ready for expansion to other formats as needed. --- setup.py | 1 + 1 file changed, 1 insertion(+) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 5910ab6..f2f16d1 100755 --- a/setup.py +++ b/setup.py @@ -28,6 +28,7 @@ setup( }, install_requires=[ 'Click>=6.0', # for better Windows console support + 'PyYAML', # importing from YAML files ], #py_modules=["vgstash"], classifiers=( -- cgit v1.2.3-54-g00ecf /knr/'>knr
Category-0 solutions to The C Programming Language, 2nd Editionzlg
aboutsummaryrefslogtreecommitdiff
path: root/1-08_space-counter.c (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2013-02-07Solve Exercises 1-1 to 1-12zlg1-0/+29
It was bugging me and the exercises are simple, so I pumped'em out.
2013-02-06Fix style issue and correct 1-24zlg1-4/+4
Escape sequences were being compared with the 'or' operator instead of the 'and' operator. If I had left it alone, every escape sequence would've borked it.
2013-02-06Solve Exercise 1-24: C syntax checkerzlg1-110/+122
I'm glad to be done with chapter 1. It feels like I'm starting to gain momentum. I'm certainly looking forward to using higher level constructs like switch(), which I think is available in Chapter 2. So far so good!