]> git.immae.eu Git - perso/Immae/Projets/Python/MusicSampler.git/blame - setup.py
Add config
[perso/Immae/Projets/Python/MusicSampler.git] / setup.py
CommitLineData
6ebe6247
IB
1from setuptools import setup
2
3def readme():
4 with open('README') as f:
5 return f.read()
6
7setup(name='music_sampler',
8 setup_requires=['setuptools_scm'],
9 use_scm_version=True,
10 description='A music player which associates each key on the keyboard '
11 'to a set of actions to run',
12 long_description=readme(),
13 classifiers= [
7b4791cf 14 'Development Status :: 5 - Production/Stable',
6ebe6247
IB
15 'Intended Audience :: End Users/Desktop',
16 'License :: OSI Approved :: MIT License',
17 'Operating System :: POSIX :: Linux',
7b4791cf 18 'Programming Language :: Python :: 3.9',
6ebe6247
IB
19 'Topic :: Multimedia :: Sound/Audio :: Players'
20 ],
21 keywords='music sampler keyboard',
7b4791cf 22 url='https://git.immae.eu/cgit/perso/Immae/Projets/Python/MusicSampler.git/about/',
6ebe6247
IB
23 author='Ismaël Bouya',
24 author_email='ismael.bouya@normalesup.org',
25 license='MIT',
26 packages=['music_sampler', 'music_sampler.actions'],
27 install_requires=[
2c4d869f 28 'Cython>=0.24',
6ebe6247
IB
29 'Kivy>=1.9.1',
30 'pydub>=0.16.4',
31 'Pygame>=1.9.2.dev1',
32 'sounddevice>=0.3.3',
33 'TRANSITIONS>=0.4.1',
34 'PyYAML>=3.11'
35 ],
36 entry_points={
37 'console_scripts': ['music_sampler=music_sampler.app:main'],
38 },
39 include_package_data=True,
40 zip_safe=False)
41