Skip to content

Commit

Permalink
Update setup.py style
Browse files Browse the repository at this point in the history
  • Loading branch information
jleclanche committed May 3, 2016
1 parent d7e5f9c commit 1bfab38
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,27 +5,27 @@


CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Multimedia :: Sound/Audio :: Conversion',
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Conversion",
]


setup(
name='fsb5',
name="fsb5",
version=fsb5.__version__,
author=fsb5.__author__,
author_email=fsb5.__email__,
description='Library and to extract audio from FSB5 (FMOD Sample Bank) files',
download_url='https://github.com/HearthSim/python-fsb5/tarball/master',
license='MIT',
url='https://github.com/HearthSim/python-fsb5',
description="Library and to extract audio from FSB5 (FMOD Sample Bank) files",
download_url="https://github.com/HearthSim/python-fsb5/tarball/master",
license="MIT",
url="https://github.com/HearthSim/python-fsb5",
classifiers=CLASSIFIERS,
packages=find_packages(),
)

0 comments on commit 1bfab38

Please sign in to comment.