Skip to content

Commit

Permalink
fixed ModuleNotFoundError: No module named 'dateutil' error:
Browse files Browse the repository at this point in the history
- created `requirements.txt`
- added `python-dateutil` dependency to `setup.py
  • Loading branch information
ink-splatters committed Jun 7, 2024
1 parent 0fcd68e commit 97dde5b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python-dateutil
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
'Programming Language :: Python :: 3.4',
],
packages = find_packages(),
install_requires = [ "python-dateutil" ],
keywords='cue parser cdtool audio generator',
entry_points={
'console_scripts': [
Expand Down

0 comments on commit 97dde5b

Please sign in to comment.