-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
11 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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"), | ||
) |