We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3b9e98a + b6ca2ee commit 199b2eeCopy full SHA for 199b2ee
3 files changed
setup.py
@@ -26,7 +26,11 @@
26
url=__url__,
27
packages=find_packages(where="src"),
28
package_dir={"": "src"},
29
- include_package_data=True,
+ package_data=dict(
30
+ hyperlink=[
31
+ "py.typed",
32
+ ],
33
+ ),
34
zip_safe=False,
35
license=__license__,
36
platforms='any',
src/hyperlink/py.typed
@@ -0,0 +1 @@
1
+# See: https://www.python.org/dev/peps/pep-0561/
tox.ini
@@ -255,7 +255,7 @@ skip_install = True
255
deps =
256
{[testenv:coverage_report]deps}
257
258
- codecov==2.0.21
+ codecov==2.0.22
259
260
passenv =
261
# See https://github.com/codecov/codecov-python/blob/master/README.md#using-tox
0 commit comments