File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed
Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 1+ include LICENSE
2+ graft html5lib/tests/testdata
3+ recursive-include html5lib/tests *.py
Original file line number Diff line number Diff line change 2222 'Topic :: Text Processing :: Markup :: HTML'
2323 ]
2424
25+
26+ packages = ['html5lib' ] + ['html5lib.' + name
27+ for name in os .listdir (os .path .join ('html5lib' ))
28+ if os .path .isdir (os .path .join ('html5lib' , name )) and
29+ not name .startswith ('.' ) and name != 'tests' ]
30+
2531setup (name = 'html5lib' ,
2632 version = '1.0b1' ,
2733 url = 'https://github.com/html5lib/html5lib-python' ,
3137 classifiers = classifiers ,
3238 maintainer = 'James Graham' ,
3339 maintainer_email = 'james@hoppipolla.co.uk' ,
34- packages = ['html5lib' ] + ['html5lib.' + name
35- for name in os .listdir (os .path .join ('html5lib' ))
36- if os .path .isdir (os .path .join ('html5lib' ,name )) and
37- not name .startswith ('.' )]
40+ packages = packages
3841 )
You can’t perform that action at this time.
0 commit comments