We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4640716 + b6ca2ee commit e40ca57Copy full SHA for e40ca57
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
@@ -215,7 +215,7 @@ skip_install = True
215
216
deps =
217
coverage==4.5.4
218
- codecov==2.0.21
+ codecov==2.0.22
219
220
commands =
221
# Note documentation for CI variables in default environment's passenv
0 commit comments