X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=setup.py;fp=setup.py;h=a4cdb3cc0f9bcc2691867c7279431d64fe8f05db;hb=6ebe62478a49df22c55ef6a2b1200473500a7f80;hp=0000000000000000000000000000000000000000;hpb=63ba5a8dc2aa4ec3e6f203b0ba4db249ecf0b00e;p=perso%2FImmae%2FProjets%2FPython%2FMusicSampler.git diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..a4cdb3c --- /dev/null +++ b/setup.py @@ -0,0 +1,40 @@ +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 :: 4 - Beta', + 'Intended Audience :: End Users/Desktop', + 'License :: OSI Approved :: MIT License', + 'Operating System :: POSIX :: Linux', + 'Programming Language :: Python :: 3.5', + 'Topic :: Multimedia :: Sound/Audio :: Players' + ], + keywords='music sampler keyboard', + url='https://git.immae.eu/?p=perso/Immae/Projets/Python/MusicSampler.git', + author='Ismaël Bouya', + author_email='ismael.bouya@normalesup.org', + license='MIT', + packages=['music_sampler', 'music_sampler.actions'], + install_requires=[ + '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) +