From 5b26b1d17c88eaba0f84eb33f1c245363a26fecd Mon Sep 17 00:00:00 2001 From: Jungtaek Kim Date: Thu, 4 Jan 2024 14:20:36 -0500 Subject: [PATCH] Happy new year --- LICENSE | 2 +- bayeso_benchmarks/__init__.py | 2 +- bayeso_benchmarks/benchmark_base.py | 2 +- bayeso_benchmarks/utils.py | 2 +- setup.py | 11 +++++++++-- 5 files changed, 13 insertions(+), 6 deletions(-) diff --git a/LICENSE b/LICENSE index 60c4a91..79587aa 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2019-2023 Jungtaek Kim +Copyright (c) 2019-2024 Jungtaek Kim Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/bayeso_benchmarks/__init__.py b/bayeso_benchmarks/__init__.py index 49a572f..0467deb 100644 --- a/bayeso_benchmarks/__init__.py +++ b/bayeso_benchmarks/__init__.py @@ -1,5 +1,5 @@ # -# author: Jungtaek Kim (jtkim@postech.ac.kr) +# author: Jungtaek Kim (jungtaek.kim.mail@gmail.com) # last updated: January 27, 2023 # diff --git a/bayeso_benchmarks/benchmark_base.py b/bayeso_benchmarks/benchmark_base.py index c3d5472..b5d92f6 100644 --- a/bayeso_benchmarks/benchmark_base.py +++ b/bayeso_benchmarks/benchmark_base.py @@ -1,5 +1,5 @@ # -# author: Jungtaek Kim (jtkim@postech.ac.kr) +# author: Jungtaek Kim (jungtaek.kim.mail@gmail.com) # last updated: December 13, 2022 # diff --git a/bayeso_benchmarks/utils.py b/bayeso_benchmarks/utils.py index 4fc6189..fcc4af6 100644 --- a/bayeso_benchmarks/utils.py +++ b/bayeso_benchmarks/utils.py @@ -1,5 +1,5 @@ # -# author: Jungtaek Kim (jtkim@postech.ac.kr) +# author: Jungtaek Kim (jungtaek.kim.mail@gmail.com) # last updated: January 4, 2023 # diff --git a/setup.py b/setup.py index 2d524b9..99a468d 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,9 @@ from setuptools import setup +from pathlib import Path + + +this_directory = Path(__file__).parent +long_description = (this_directory / "README.md").read_text() path_requirements = 'requirements.txt' list_packages = ['bayeso_benchmarks'] @@ -10,10 +15,12 @@ name='bayeso-benchmarks', version='0.2.0', author='Jungtaek Kim', - author_email='jtkim@postech.ac.kr', + author_email='jungtaek.kim.mail@gmail.com', url='https://bayeso.org', license='MIT', - description='Benchmarks for Bayesian optimization', + description='Benchmark Functions for Bayesian optimization', + long_description=long_description, + long_description_content_type='text/markdown', packages=list_packages, python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, != 3.3.*, !=3.4.*, !=3.5.*, <4', install_requires=required,