Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ include README.rst
include LICENSE
include bin/*
include media/*
include options/*
include requirements/*
recursive-include boxkit/cbox *
recursive-include boxkit/depends *
14 changes: 7 additions & 7 deletions bin/cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ def initialize_options(self):
"""
Initialize options
"""
self.with_cbox = 0 # pylint: disable=attribute-defined-outside-init
self.with_pyarrow = 0 # pylint: disable=attribute-defined-outside-init
self.with_zarr = 0 # pylint: disable=attribute-defined-outside-init
self.with_dask = 0 # pylint: disable=attribute-defined-outside-init
self.with_server = 0 # pylint: disable=attribute-defined-outside-init
self.enable_testing = 0 # pylint: disable=attribute-defined-outside-init
self.with_cbox = None # pylint: disable=attribute-defined-outside-init
self.with_pyarrow = None # pylint: disable=attribute-defined-outside-init
self.with_zarr = None # pylint: disable=attribute-defined-outside-init
self.with_dask = None # pylint: disable=attribute-defined-outside-init
self.with_server = None # pylint: disable=attribute-defined-outside-init
self.enable_testing = None # pylint: disable=attribute-defined-outside-init

def finalize_options(self):
"""
Expand All @@ -49,7 +49,7 @@ def finalize_options(self):
"with_server",
"enable_testing",
]:
if getattr(self, option) not in [0, 1]:
if getattr(self, option) not in [None, 1]:
raise ValueError(f"{option} is a flag")

def run(self, user):
Expand Down
3 changes: 1 addition & 2 deletions boxkit/__meta__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
"""Metadata for BoxKit package"""

__pkgname__ = "BoxKit"
__version__ = "2023.06"
__version__ = "2023.06.5"
__authors__ = "Akash Dhruv"
__license__ = "Apache License"
__copyright__ = "Copyright (c) Akash Dhruv 2023. All Rights Reserved."
__description__ = "BoxKit utility"