Skip to content

Commit 56b88b7

Browse files
fix typo in setup.py package_data (#701)
This change fixes a typo in setup.py package_data which prevents the type information from being exported. fixes: #699
1 parent c0b82b7 commit 56b88b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
include_package_data=True,
1616
package_data={
1717
'': ['README.rst'],
18-
'rq': ['py.typed'],
18+
'django_rq': ['py.typed'],
1919
},
2020
install_requires=['django>=3.2', 'rq>=2', 'redis>=3.5'],
2121
extras_require={

0 commit comments

Comments
 (0)