forked from mjbrusso/AudioPlayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (47 loc) · 1.34 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
from setuptools import setup, find_packages
from audioplayer import __name__, __package__, __version__
__author__ = "Marcos Brusso"
__author_email__="[email protected]"
__license__ ="MIT License"
__desc__ = "audioplayer is a cross platform Python 3 module for playing sounds (mp3, wav, ...)"
__python_requires__ = ">=3"
__keywords__ = [
"sound",
__name__,
"music",
"player",
"game",
"games",
"mp3",
"wav",
"audio"
]
__url__ = "https://github.com/mjbrusso/audioplayer"
__classifiers__ = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Topic :: Multimedia",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Players",
"Topic :: Multimedia :: Sound/Audio :: Players :: MP3",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
]
setup(
name=__name__,
version=__version__,
author=__author__,
author_email=__author_email__,
description=__desc__,
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
license=__license__,
keywords=__keywords__,
url=__url__,
packages=find_packages(),
classifiers=__classifiers__,
install_requires=[],
# extras_require=[],
python_requires=__python_requires__,
)