simonh10 / python-edl

A python EDL parsing library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

`pip install edl` doesn't automatically include `timecode` library

lofidevops opened this issue · comments

commented

Steps to reproduce:

  • Run pip install edl

What should happen:

  • Installs edl library and dependencies (namely, timecode)

What happens instead:

pip install edl
Downloading/unpacking edl
  Downloading edl-0.1.11.tar.gz
  Running setup.py (path:/home/user/.local/share/virtualenvs/edl_test/build/edl/setup.py) egg_info for package edl
    Traceback (most recent call last):
      File "<string>", line 17, in <module>
      File "/home/user/.local/share/virtualenvs/edl_test/build/edl/setup.py", line 4, in <module>
        import edl
      File "edl/__init__.py", line 9, in <module>
        import timecode
    ImportError: No module named timecode
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):

  File "<string>", line 17, in <module>

  File "/home/user/.local/share/virtualenvs/edl_test/build/edl/setup.py", line 4, in <module>

    import edl

  File "edl/__init__.py", line 9, in <module>

    import timecode

ImportError: No module named timecode

----------------------------------------
Cleaning up...
Command python setup.py egg_info failed with error code 1 in /home/user/.local/share/virtualenvs/edl_test/build/edl
Storing debug log for failure in /home/user/.pip/pip.log

Workaround:

  • Run pip install timecode first, then pip install edl