From c531f6262fb3c82772079a2bc1fa56a798439179 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=8E=B9=E1=8E=A6=E1=8E=B5?= Date: Tue, 28 Dec 2021 16:15:21 -0500 Subject: [PATCH 1/2] make installable via pip --- .gitignore | 3 ++- setup.py | 13 +++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 setup.py diff --git a/.gitignore b/.gitignore index 1b5ccb18..66dc4a4d 100644 --- a/.gitignore +++ b/.gitignore @@ -14,4 +14,5 @@ Models *.wav audios/notes.txt audios/ -playground.py \ No newline at end of file +playground.py*.egg-info +*.egg-info/ diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..4a14decd --- /dev/null +++ b/setup.py @@ -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, ) From 2e2958dd7c0bbbf2849056d18dbe87f535e9c23e Mon Sep 17 00:00:00 2001 From: Michael Conrad <5229492+michael-conrad@users.noreply.github.com> Date: Thu, 30 Dec 2021 10:31:00 -0500 Subject: [PATCH 2/2] fix typo --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 66dc4a4d..953adcd1 100644 --- a/.gitignore +++ b/.gitignore @@ -14,5 +14,5 @@ Models *.wav audios/notes.txt audios/ -playground.py*.egg-info +playground.py *.egg-info/