Skip to content

Commit

Permalink
working version
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-christie committed Jun 26, 2014
1 parent 7409ee5 commit eca0aec
Show file tree
Hide file tree
Showing 108 changed files with 957 additions and 11,265 deletions.
55 changes: 55 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# Pycharm
.idea/

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.cache
nosetests.xml
coverage.xml

# Translations
*.mo
*.pot

# Django stuff:
*.log

#builds
dist/
build/
VFClust.egg*

# VFClust usage files
example/EXAMPLE_repetition_vfclust*
example/EXAMPLE_vfclust*
example/EXAMPLE_sem_vfclust*

3 changes: 1 addition & 2 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
v0.1.1, 6/24/2014 -- Updated README.rst, docs.
v0.1.0, 6/24/2014 -- Initial release.
v0.1.0, 6/25/2014 -- Initial release.
2 changes: 2 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
CHANGES.txt
LICENSE.txt
Makefile
README
requirements.txt
setup.py
data/.DS_Store
data/animals_lemmas.dat
Expand Down
29 changes: 22 additions & 7 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,12 +1,27 @@
#documentation
recursive-include docs/_build/html *.*
include t2p/t2p.c
include t2p/t2pin.tmp
#include example/EXAMPLE.*
#include example/EXAMPLE_sem.*
include Makefile

#data used for clustering
recursive-include vfclust/data *

#phonetic representation
include vfclust/t2p/t2p.c
include vfclust/t2p/t2pin.tmp
include vfclust/Makefile

#example files
include vfclust/example/EXAMPLE.*
include vfclust/example/EXAMPLE_sem.*

#Misc
include CHANGES.txt
include LICENSE.txt
include data/*
include README

## Testing
include vfclust/test/__init__.py

## When adding in the app:
# include vfclust_app
# include requirements.txt
# include requirements.txt

0 comments on commit eca0aec

Please sign in to comment.