-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
31 lines (30 loc) · 1.1 KB
/
setup.py
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='superboucle',
version='1.2.0',
python_requires='>=3',
packages=find_packages(),
author='Vampouille',
author_email='[email protected]',
description='Loop application synced with jack transport',
long_description=open('readme.md').read(),
install_requires=["PyQt5>=5.11",
"SoundFile>=0.8.0",
"numpy>=1.16"],
include_package_data=True,
url='http://superboucle.nura.eu',
classifiers=[
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Topic :: Multimedia :: Sound/Audio :: Capture/Recording",
"Topic :: Multimedia :: Sound/Audio :: MIDI",
],
entry_points={'console_scripts':
['superboucle = superboucle.boucle:start']},
)