diff --git a/MANIFEST.in b/MANIFEST.in index 55a5c50..ac514a6 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,8 +1,9 @@ include CODE_OF_CONDUCT.md LICENSE SECURITY.md requirements.txt global-exclude *.py[cod] exclude *.ipynb -exclude make_table.py cv_utils.py time_series.py vision.py Dockerfile .pre-commit-config.yaml .copyright.tmpl .gitignore +exclude Dockerfile .pre-commit-config.yaml .copyright.tmpl .gitignore recursive-exclude cv_logits * recursive-exclude cv_models * recursive-exclude figures * recursive-exclude results * +recursive-exclude .github * diff --git a/online_conformal/__init__.py b/online_conformal/__init__.py new file mode 100644 index 0000000..d87cc3c --- /dev/null +++ b/online_conformal/__init__.py @@ -0,0 +1,6 @@ +# +# Copyright (c) 2023 salesforce.com, inc. +# All rights reserved. +# SPDX-License-Identifier: Apache-2.0 +# For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/Apache-2.0 +# diff --git a/setup.py b/setup.py index 68aeecd..688af0d 100644 --- a/setup.py +++ b/setup.py @@ -8,13 +8,15 @@ setup( name="online_conformal", - version="1.0.1", + version="1.0.2", author="Aadyot Bhatnagar", author_email="abhatnagar@salesforce.com", description="A library for time series conformal prediction", long_description=open("README.md", "r", encoding="utf-8").read(), long_description_content_type="text/markdown", license="Apache 2.0", + url="https://github.com/salesforce/online_conformal", packages=find_packages(include=["online_conformal*"]), + package_dir={"online_conformal": "online_conformal"}, install_requires=open("requirements.txt").read().split("\n"), )