File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 1+ ## 0.3.2 (2016-04-28)
2+ bug: fix setup.py issues
3+
14## 0.3 (2016-04-27)
25feat: added travis, normalized directories
36
Original file line number Diff line number Diff line change 1+ include *.md
2+ include *.txt
3+ include setup.*
4+ include LICENSE
5+ recursive-include pywebpush
Original file line number Diff line number Diff line change 11import io
22import os
33
4- from setuptools import setup
4+ from setuptools import find_packages , setup
55
6- __version__ = "0.3"
6+ __version__ = "0.3.2 "
77
88
99def read_from (file ):
@@ -26,6 +26,7 @@ def read_from(file):
2626
2727setup (name = "pywebpush" ,
2828 version = __version__ ,
29+ packages = find_packages (),
2930 description = 'WebPush publication library' ,
3031 long_description = README + '\n \n ' + CHANGES ,
3132 classifiers = ["Topic :: Internet :: WWW/HTTP" ,
You can’t perform that action at this time.
0 commit comments