Skip to content

Commit e791adf

Browse files
committed
Replace double quotes by single quotes in setup.py
1 parent 5d3f10d commit e791adf

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

setup.py

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
import platform
33
from setuptools import setup
44

5-
__version__ = "unknown"
5+
__version__ = 'unknown'
66

77
# "import" __version__
8-
for line in open("sounddevice.py"):
9-
if line.startswith("__version__"):
8+
for line in open('sounddevice.py'):
9+
if line.startswith('__version__'):
1010
exec(line)
1111
break
1212

@@ -65,30 +65,30 @@ def get_tag(self):
6565
cmdclass = {'bdist_wheel': bdist_wheel_half_pure}
6666

6767
setup(
68-
name="sounddevice",
68+
name='sounddevice',
6969
version=__version__,
70-
py_modules=["sounddevice"],
70+
py_modules=['sounddevice'],
7171
packages=packages,
7272
package_data=package_data,
7373
zip_safe=zip_safe,
74-
install_requires=["CFFI"],
75-
extras_require={"NumPy": ["NumPy"]},
76-
author="Matthias Geier",
77-
author_email="Matthias.Geier@gmail.com",
78-
description="Play and Record Sound with Python",
79-
long_description=open("README.rst").read(),
80-
license="MIT",
81-
keywords="sound audio PortAudio play record playrec".split(),
82-
url="http://python-sounddevice.rtfd.org/",
83-
platforms="any",
74+
install_requires=['CFFI'],
75+
extras_require={'NumPy': ['NumPy']},
76+
author='Matthias Geier',
77+
author_email='Matthias.Geier@gmail.com',
78+
description='Play and Record Sound with Python',
79+
long_description=open('README.rst').read(),
80+
license='MIT',
81+
keywords='sound audio PortAudio play record playrec'.split(),
82+
url='http://python-sounddevice.rtfd.org/',
83+
platforms='any',
8484
classifiers=[
85-
"Development Status :: 3 - Alpha",
86-
"License :: OSI Approved :: MIT License",
87-
"Operating System :: OS Independent",
88-
"Programming Language :: Python",
89-
"Programming Language :: Python :: 2",
90-
"Programming Language :: Python :: 3",
91-
"Topic :: Multimedia :: Sound/Audio",
85+
'Development Status :: 3 - Alpha',
86+
'License :: OSI Approved :: MIT License',
87+
'Operating System :: OS Independent',
88+
'Programming Language :: Python',
89+
'Programming Language :: Python :: 2',
90+
'Programming Language :: Python :: 3',
91+
'Topic :: Multimedia :: Sound/Audio',
9292
],
9393
cmdclass=cmdclass,
9494
)

0 commit comments

Comments
 (0)