Skip to content

Commit 199b2ee

Browse files
authored
Merge branch 'master' into black
2 parents 3b9e98a + b6ca2ee commit 199b2ee

3 files changed

Lines changed: 7 additions & 2 deletions

File tree

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@
2626
url=__url__,
2727
packages=find_packages(where="src"),
2828
package_dir={"": "src"},
29-
include_package_data=True,
29+
package_data=dict(
30+
hyperlink=[
31+
"py.typed",
32+
],
33+
),
3034
zip_safe=False,
3135
license=__license__,
3236
platforms='any',

src/hyperlink/py.typed

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# See: https://www.python.org/dev/peps/pep-0561/

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ skip_install = True
255255
deps =
256256
{[testenv:coverage_report]deps}
257257

258-
codecov==2.0.21
258+
codecov==2.0.22
259259

260260
passenv =
261261
# See https://github.com/codecov/codecov-python/blob/master/README.md#using-tox

0 commit comments

Comments
 (0)