Skip to content

Commit

Permalink
fixed setup.py sdist
Browse files Browse the repository at this point in the history
  • Loading branch information
jpbarrette committed Sep 7, 2009
1 parent f696b1a commit d1ee5ae
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 25 deletions.
21 changes: 0 additions & 21 deletions MANIFEST

This file was deleted.

3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
;recursive-include data/ *
setup.py
recursive-include finenight/src *
2 changes: 1 addition & 1 deletion finenight/lisp/fsa.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

;; the node consists of a label and a map a symbol to
;; a destination object.
(defstruct (node (:copier nil))
(defstruct (hash-node (:copier nil))
label
(symbols-map (make-hash-table :test 'equal))
(final nil))
Expand Down
2 changes: 1 addition & 1 deletion finenight/lisp/iadfa-run.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
;(dolist (word (extract-words fsa))
;(format str "~A~%" word)))))


(iadfa-run)

;(do-symbols (s (find-package :com.rrette.finenight.iadfa))
;(sb-ext:save-lisp-and-die "iadfa-run" :executable t :toplevel #'iadfa-run)
Expand Down
2 changes: 1 addition & 1 deletion finenight/python/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__all__ = ["error", "fsa", "et", "fsc", "fst", "iadfa", "state", "transition"]
#__all__ = ["error", "fsa", "et", "fsc", "fst", "iadfa", "state", "transition"]
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@
author_email='[email protected]',
url='http://rrette.com/moman.html',
packages=['finenight'],
scripts=['recognize']
package_dir={'finenight': 'finenight/python/'},
scripts=['finenight/python/recognize']
)

0 comments on commit d1ee5ae

Please sign in to comment.