-
-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from CherokeeLanguage/chr
Make usable via pip -e install from other projects.
- Loading branch information
Showing
2 changed files
with
15 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -14,4 +14,5 @@ Models | |
*.wav | ||
audios/notes.txt | ||
audios/ | ||
playground.py | ||
playground.py | ||
*.egg-info/ |
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,13 @@ | ||
from pathlib import Path | ||
from typing import List | ||
|
||
from setuptools import setup, find_packages | ||
|
||
project_root = Path(__file__).parent | ||
|
||
install_requires: List[str] = [] | ||
|
||
print(find_packages()) | ||
|
||
setup(name="ims_toucan", version="0.0.1", packages=find_packages(), python_requires=">=3.8", | ||
install_requires=install_requires, ) |