summaryrefslogtreecommitdiff
path: root/setup.py
blob: 8abd45aa6886c7512b2cd173be353b7b7ed0c2d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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',
        'chainerui',
    ],
    classifiers=[
        'Programming Language :: Python :: 3.5',
        'Programming Language :: Python :: 3.6',
        'License :: OSI Approved :: MIT License',
    ]
)