install mycfg stub along with the package
This commit is contained in:
parent
9cd93e5c05
commit
fe0521b6dc
5 changed files with 9 additions and 2 deletions
8
setup.py
8
setup.py
|
@ -23,7 +23,13 @@ def main():
|
|||
# package_dir={'': ''},
|
||||
packages=find_packages(),
|
||||
package_data={
|
||||
'my': ['py.typed'],
|
||||
'my': [
|
||||
# for mypy
|
||||
'py.typed',
|
||||
|
||||
# empty dir, necessary for proper dynamic imports
|
||||
'mycfg_stub/repos/.gitkeep',
|
||||
],
|
||||
},
|
||||
|
||||
python_requires='>=3.5', # depends on the modules though..
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue