Skip to content

Commit

Permalink
Allow setup.py to be imported (for inspection and testing).
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Jul 5, 2013
1 parent ff6781d commit 1e39baa
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Expand Up @@ -8,7 +8,7 @@
with open('README.txt') as readme:
long_description = readme.read()

setup(
setup_params = dict(
name='qtfaststart',
version=qtfaststart.VERSION,
description='Quicktime atom positioning in Python for fast streaming.',
Expand All @@ -34,3 +34,6 @@
'Topic :: Software Development :: Libraries :: Python Modules',
],
)

if __name__ == '__main__':
setup(**setup_params)

0 comments on commit 1e39baa

Please sign in to comment.