diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..757bb61 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +recursive-include bl2tools/frontend * diff --git a/bl2tools/cli.py b/bl2tools/cli.py index a161c3e..e661d4e 100644 --- a/bl2tools/cli.py +++ b/bl2tools/cli.py @@ -10,7 +10,7 @@ from .watcher import SaveWatcher @click.option('--host', '-h', default='0.0.0.0', help='Address the web server should listen on') @click.option('--port', '-p', default=8080, help='Port the web server should listen on') @click.option('--save', '-s', type=Path, help='Path to Borderlands 2 game saves') -@click.option('--access-log', '-a', is_flag=True, default=True, help='Enable the server\'s access logging') +@click.option('--no-access-log', '-a', is_flag=True, default=True, help='Enable the server\'s access logging') @click.pass_context def cli(ctx, host, port, save, access_log): ctx.obj = Server(host, port, save, access_log) diff --git a/setup.cfg b/setup.cfg index e676935..6b9aaf1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -44,6 +44,9 @@ setup_requires = console_scripts = bl2tools = bl2tools.cli:main +[options.package_data] +bl2tools = bl2tools/* + [bdist_wheel] universal = false