Skip to content

Commit

Permalink
Additional updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
aadyotb committed Mar 10, 2023
1 parent bd85ce8 commit ec062a6
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -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 *
6 changes: 6 additions & 0 deletions online_conformal/__init__.py
Original file line number Diff line number Diff line change
@@ -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
#
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,15 @@

setup(
name="online_conformal",
version="1.0.1",
version="1.0.2",
author="Aadyot Bhatnagar",
author_email="[email protected]",
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"),
)

0 comments on commit ec062a6

Please sign in to comment.