File tree 2 files changed +10
-4
lines changed
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 22
22
'Topic :: Text Processing :: Markup :: HTML'
23
23
]
24
24
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
+
25
31
setup (name = 'html5lib' ,
26
32
version = '1.0b1' ,
27
33
url = 'https://github.com/html5lib/html5lib-python' ,
31
37
classifiers = classifiers ,
32
38
maintainer = 'James Graham' ,
33
39
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
38
41
)
You can’t perform that action at this time.
0 commit comments