File tree Expand file tree Collapse file tree 4 files changed +12
-0
lines changed Expand file tree Collapse file tree 4 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 1+ # PEP 561
Original file line number Diff line number Diff line change 1+ # PEP 561
Original file line number Diff line number Diff line change 1616 'git_describe_command' : 'git describe --dirty --tags --long --match "plugin-ext-test*"' ,
1717}
1818
19+ PACKAGE_DATA = {
20+ 'cmd2_ext_test' : ['py.typed' ],
21+ }
22+
1923setuptools .setup (
2024 name = 'cmd2-ext-test' ,
2125 version = scm_version ,
3034 url = 'https://github.com/python-cmd2/cmd2/tree/master/plugins/ext_test' ,
3135 license = 'MIT' ,
3236
37+ package_data = PACKAGE_DATA ,
3338 packages = ['cmd2_ext_test' ],
3439
3540 python_requires = '>=3.5' ,
Original file line number Diff line number Diff line change 7070 ]
7171}
7272
73+ PACKAGE_DATA = {
74+ 'cmd2' : ['py.typed' ],
75+ }
76+
7377setup (
7478 name = "cmd2" ,
7579 use_scm_version = {
8488 url = 'https://github.com/python-cmd2/cmd2' ,
8589 license = 'MIT' ,
8690 platforms = ['any' ],
91+ package_data = PACKAGE_DATA ,
8792 packages = ['cmd2' ],
8893 keywords = 'command prompt console cmd' ,
8994 python_requires = '>=3.5' ,
You can’t perform that action at this time.
0 commit comments