We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a7185fc + 8202229 commit 407a1bbCopy full SHA for 407a1bb
3 files changed
edl/__init__.py
@@ -8,7 +8,7 @@
8
import pprint
9
import timecode
10
11
-__version__ = '0.1.11'
+from .version import __version__
12
13
14
class List(object):
edl/version.py
@@ -0,0 +1 @@
1
+__version__ = '0.1.11'
setup.py
@@ -1,15 +1,15 @@
#!/usr/bin/env python
2
3
from distutils.core import setup
4
-import edl
+exec(open('edl/version.py').read())
5
6
requires = [
7
'timecode'
]
setup(
name='edl',
- version=edl.__version__,
+ version=__version__,
description='Simple EDL reading library',
author='Simon Hargreaves',
15
author_email='simon@simon-hargreaves.com',
0 commit comments