summaryrefslogtreecommitdiff
path: root/setup.py
blob: dc78f0c7c46cf8c47847f5978b68883827be06c6 (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
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',
    ]
)