-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (32 loc) · 1.32 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
32
33
from distutils.core import setup
setup(
name = 'pywinmm',
packages = ['pywinmm'],
version = '0.3',
license=' GPL-3.0',
description = 'a python library that works with win multy media dll',
author = 'nacer baaziz',
author_email = 'nacerbaaziz@ng-space.com',
url = 'https://github.com/baaziznasser/pywinmm',
download_url = 'https://github.com/baaziznasser/pywinmm/archive/refs/tags/0.2.tar.gz',
keywords = ['windows media', 'play wav', 'play mp3', 'python audio', 'play audio files', 'record audio files', 'pymedia', 'winmm.dll', 'pywinmm'],
install_requires=[
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
"Operating System :: Microsoft :: Windows",
'Environment :: Win32 (MS Windows)',
'Environment :: Win64 (MS Windows)',
],
)