Skip to content

Commit

Permalink
Merge pull request #6 from CherokeeLanguage/chr
Browse files Browse the repository at this point in the history
Make usable via pip -e install from other projects.
  • Loading branch information
Flux9665 authored Jan 3, 2022
2 parents 931e4ce + 2e2958d commit b2c3e62
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ Models
*.wav
audios/notes.txt
audios/
playground.py
playground.py
*.egg-info/
13 changes: 13 additions & 0 deletions setup.py
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, )

0 comments on commit b2c3e62

Please sign in to comment.