aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: e9f2ca6cbe1077582e8c8eabc81973a6ea14e1ef (plain) (blame)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
from setuptools import setup

def readme():
    with open('README') as f:
        return f.read()

setup(name='music_sampler',
        setup_requires=['setuptools_scm'],
        use_scm_version=True,
        description='A music player which associates each key on the keyboard '
            'to a set of actions to run',
        long_description=readme(),
        classifiers= [
            'Development Status :: 5 - Production/Stable',
            'Intended Audience :: End Users/Desktop',
            'License :: OSI Approved :: MIT License',
            'Operating System :: POSIX :: Linux',
            'Programming Language :: Python :: 3.9',
            'Topic :: Multimedia :: Sound/Audio :: Players'
        ],
        keywords='music sampler keyboard',
        url='https://git.immae.eu/cgit/perso/Immae/Projets/Python/MusicSampler.git/about/',
        author='Ismaƫl Bouya',
        author_email='ismael.bouya@normalesup.org',
        license='MIT',
        packages=['music_sampler', 'music_sampler.actions'],
        install_requires=[
            'Cython>=0.24',
            'Kivy>=1.9.1',
            'pydub>=0.16.4',
            'Pygame>=1.9.2.dev1',
            'sounddevice>=0.3.3',
            'TRANSITIONS>=0.4.1',
            'PyYAML>=3.11'
        ],
        entry_points={
            'console_scripts': ['music_sampler=music_sampler.app:main'],
        },
        include_package_data=True,
        zip_safe=False)