mirror of
https://github.com/codex-storage/deluge.git
synced 2025-01-20 08:19:53 +00:00
[AutoAdd] Fix packaging autoadd_options data files
There was a warning about missing javascript file in the package and found the `data/autoadd_options` subdir was not being included. Bump version
This commit is contained in:
parent
9264cb749e
commit
9e7c9fc1d3
@ -18,12 +18,14 @@ from setuptools import find_packages, setup
|
||||
__plugin_name__ = 'AutoAdd'
|
||||
__author__ = 'Chase Sterling, Pedro Algarvio'
|
||||
__author_email__ = 'chase.sterling@gmail.com, pedro@algarvio.me'
|
||||
__version__ = '1.06'
|
||||
__version__ = '1.7'
|
||||
__url__ = 'http://dev.deluge-torrent.org/wiki/Plugins/AutoAdd'
|
||||
__license__ = 'GPLv3'
|
||||
__description__ = 'Monitors folders for .torrent files.'
|
||||
__long_description__ = """"""
|
||||
__pkg_data__ = {'deluge.plugins.' + __plugin_name__.lower(): ['template/*', 'data/*']}
|
||||
__pkg_data__ = {
|
||||
'deluge.plugins.' + __plugin_name__.lower(): ['template/*', 'data/*', 'data/*/*']
|
||||
}
|
||||
|
||||
setup(
|
||||
name=__plugin_name__,
|
||||
|
Loading…
x
Reference in New Issue
Block a user