-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.py
27 lines (23 loc) · 896 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Copyright (c) 2018-present, Royal Bank of Canada and other authors.
# See the AUTHORS.txt file for a list of contributors.
# All rights reserved.
#
# This source code is licensed under the license found in the
# LICENSE file in the root directory of this source tree.
#
import os
from setuptools import find_packages
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'torchcp/VERSION')) as f:
version = f.read().strip()
setup(name='torchcp',
version=version,
url='https://github.com/ml-stat-Sustech/TorchCP',
package_data={'examples': ['*.ipynb']},
description="A Python toolbox for conformal prediction on deep learning models.",
install_requires=[],
include_package_data=True,
packages=find_packages(),
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
)