Skip to content

Commit

Permalink
rearrange project to be inside src/ directory to match setup.cfg. add…
Browse files Browse the repository at this point in the history
  • Loading branch information
kalvinchang committed Dec 17, 2021
1 parent 511eaa9 commit 23fee6e
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -245,5 +245,6 @@ Finally, attach the SymbolTable to the FST as follows:
```fst.draw(file_name, portrait=True, isymbols=st, osymbols=st)```

## Tests
To run the tests, run
```python -m pytest``` from the root directory
To run the tests,
1. Build the app. Run ```pip3 install --editable .``` from the root directory
2. Run ```python -m pytest``` from the root directory
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from setuptools import find_packages, setup

setup(
package_dir={'': 'src'},
packages=find_packages(where='src')
)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 23fee6e

Please sign in to comment.