-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
34 lines (30 loc) · 1.03 KB
/
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
28
29
30
31
32
33
34
from setuptools import setup, find_packages
import os
import sys
_here = os.path.abspath(os.path.dirname(__file__))
if sys.version_info[0] < 3:
with open(os.path.join(_here, "README.md")) as f:
long_description = f.read()
else:
with open(os.path.join(_here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
desc = "Code to reproduce experiments from Bayesian Optimization with Conformal" \
"Coverage Guarantees."
setup(
name="conformal-bayesopt",
version="0.1.0",
description=desc,
long_description=long_description,
long_description_content_type='text/markdown',
author="Samuel Stanton, Wesley Maddox, and Sanyam Kapoor",
author_email="[email protected]",
url="https://github.com/samuelstanton/conformal-bayesopt.git",
license="Apache-2.0",
packages=find_packages(),
include_package_data=True,
classifiers=[
"Development Status :: 3",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.8",
],
)