From 6ebe62478a49df22c55ef6a2b1200473500a7f80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Bouya?= Date: Wed, 27 Jul 2016 22:15:25 +0200 Subject: Use pip setup file --- setup.py | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 setup.py (limited to 'setup.py') 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) + -- cgit v1.2.3