Skip to content

Commit

Permalink
Merge pull request #54 from austinwitherspoon/add-type-hints
Browse files Browse the repository at this point in the history
Add type hints, and restrict package to 3.7+
  • Loading branch information
eoyilmaz committed Jul 8, 2024
2 parents 7f2b134 + 8f3c39d commit 34f8d4e
Show file tree
Hide file tree
Showing 4 changed files with 112 additions and 58 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
.coverage
*.egg-info/*
*.swp
.venv/*
docs/html/*
docs/latex/*
docs/doctrees/*
Expand Down
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,9 @@ def get_meta(meta):
keywords=['video', 'timecode', 'smpte'],
packages=find_packages(),
include_package_data=True,
package_data={
"timecode": ["py.typed"],
},
python_requires=">=3.7",
zip_safe=True,
)
Loading

0 comments on commit 34f8d4e

Please sign in to comment.