@@ -125,10 +125,12 @@ def read(fname):
125
125
from tools .py2conv import convert_to_python2
126
126
convert_to_python2 ()
127
127
128
+ packages = find_packages (src_root , include = ['errbot' , 'errbot.*' ])
129
+
128
130
setup (
129
131
name = "errbot" ,
130
132
version = VERSION ,
131
- packages = find_packages ( src_root , exclude = [ 'tests' , 'tests.*' , 'tools' ]) ,
133
+ packages = packages ,
132
134
entry_points = {
133
135
'console_scripts' : [
134
136
'errbot = errbot.cli:main' ,
@@ -138,7 +140,19 @@ def read(fname):
138
140
install_requires = deps ,
139
141
tests_require = ['nose' , 'webtest' , 'requests' ],
140
142
package_data = {
141
- '' : ['*.txt' , '*.rst' , '*.plug' , '*.md' ],
143
+ 'errbot' : ['backends/*.plug' ,
144
+ 'backends/*.html' ,
145
+ 'backends/styles/*.css' ,
146
+ 'backends/images/*.svg' ,
147
+ 'core_plugins/*.plug' ,
148
+ 'core_plugins/templates/*.md' ,
149
+ 'storage/*.plug' ,
150
+ 'templates/initdir/example.py' ,
151
+ 'templates/initdir/example.plug' ,
152
+ 'templates/initdir/config.py.tmpl' ,
153
+ 'templates/*.md' ,
154
+ 'templates/new_plugin.py.tmpl' ,
155
+ ],
142
156
},
143
157
extras_require = {
144
158
'graphic' : ['PySide' , ],
@@ -160,7 +174,6 @@ def read(fname):
160
174
"Development Status :: 5 - Production/Stable" ,
161
175
"Topic :: Communications :: Chat" ,
162
176
"Topic :: Communications :: Chat :: Internet Relay Chat" ,
163
- "Topic :: Communications :: Conferencing" ,
164
177
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)" ,
165
178
"Operating System :: OS Independent" ,
166
179
"Programming Language :: Python :: 2" ,
0 commit comments