-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from WheheoHu/WheheoHu/issue9
Fixes #9 and More
- Loading branch information
Showing
9 changed files
with
186 additions
and
196 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ __pycache__ | |
dftt_timecode.egg-info | ||
.pytest_cache | ||
.DS_Store | ||
playground.ipynb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -591,3 +591,4 @@ int(tc_a) | |
#864000 | ||
``` | ||
|
||
#TODO TimeRange readme |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name = 'dftt_timecode' | ||
__author__ = 'You Ziyuan' | ||
__version__ = '0.0.12' | ||
__version__ = '0.0.13' | ||
|
||
from dftt_timecode.core import DfttTimecode | ||
from dftt_timecode.core.dftt_timecode import DfttTimecode |
316 changes: 141 additions & 175 deletions
316
dftt_timecode/core.py → dftt_timecode/core/dftt_timecode.py
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
import setuptools | ||
|
||
import dftt_timecode as package | ||
with open("README.md", "r",encoding='UTF-8') as fh: | ||
long_description = fh.read() | ||
|
||
setuptools.setup( | ||
name="dftt_timecode", | ||
version="0.0.12", | ||
name=package.name, | ||
version=package.__version__, | ||
author="You Ziyuan", | ||
author_email="[email protected]", | ||
description="Timecode library for film and TV industry, supports HFR and a bunch of cool features", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters