diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 55a6a5d5..68c29b6e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 0.1.1 commit = False tag = False allow_dirty = False diff --git a/requirements.txt b/requirements.txt index 17e0ec55..9cd84cbe 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ pandas~=1.0.0 -scipy==1.4.1 +scipy~=1.4 numpy~=1.18.0 scikit-learn~=0.22.0 seaborn~=0.10.0 -typing-extensions==3.7.4.2 \ No newline at end of file +typing-extensions~=3.7 diff --git a/setup.py b/setup.py index a6595422..4671a87c 100644 --- a/setup.py +++ b/setup.py @@ -8,9 +8,11 @@ setup( name='sensai', package_dir={"": "src"}, + license="MIT", + url="https://github.com/jambit/sensAI", packages=find_packages(where="src"), include_package_data=True, - version='0.1.0', + version='0.1.1', description='Library for sensible AI', install_requires=[ line diff --git a/src/sensai/__init__.py b/src/sensai/__init__.py index 45b7b4a2..bdd35ba4 100644 --- a/src/sensai/__init__.py +++ b/src/sensai/__init__.py @@ -16,7 +16,7 @@ TensorToTensorClassificationModel, TensorToScalarClassificationModel from .vector_model import PredictorModel, VectorModel, VectorRegressionModel, VectorClassificationModel -__version__ = "0.1.0" +__version__ = "0.1.1" # The following submodules are not imported by default to avoid necessarily requiring their dependencies: # tensorflow