diff options
| author | Hiroshiba <Hiroshiba@users.noreply.github.com> | 2018-02-18 13:47:43 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-02-18 13:47:43 +0900 |
| commit | 0faa1022b927d53bbb4fb90d6960cf6dc337b58a (patch) | |
| tree | 97672fffb6670115843c66fad9134c57edb86d05 /setup.py | |
| parent | cfaf743662f979e816e280e95a1f428bd0c3d247 (diff) | |
Create setup.py
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..dc78f0c --- /dev/null +++ b/setup.py @@ -0,0 +1,27 @@ +from setuptools import setup, find_packages + +setup( + name='become_yukarin', + version='1.0.0', + packages=find_packages(), + url='https://github.com/Hiroshiba/become-yukarin', + author='Kazuyuki Hiroshiba', + author_email='hihokaruta@gmail.com', + description='become Yuduki Yukari with DeepLearning power.', + license='MIT License', + install_requires=[ + 'numpy', + 'chainer', + 'librosa', + 'pysptk', + 'pyworld', + 'fastdtw', + 'nnmnkwii', + 'chainerui', + ], + classifiers=[ + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'License :: OSI Approved :: MIT License', + ] +) |
