Skip to content

Commit 34f8d4e

Browse files
authored
Merge pull request #54 from austinwitherspoon/add-type-hints
Add type hints, and restrict package to 3.7+
2 parents 7f2b134 + 8f3c39d commit 34f8d4e

4 files changed

Lines changed: 112 additions & 58 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
.coverage
55
*.egg-info/*
66
*.swp
7+
.venv/*
78
docs/html/*
89
docs/latex/*
910
docs/doctrees/*

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,9 @@ def get_meta(meta):
5959
keywords=['video', 'timecode', 'smpte'],
6060
packages=find_packages(),
6161
include_package_data=True,
62+
package_data={
63+
"timecode": ["py.typed"],
64+
},
65+
python_requires=">=3.7",
6266
zip_safe=True,
6367
)

0 commit comments

Comments
 (0)