Skip to content

Commit

Permalink
Happy new year
Browse files Browse the repository at this point in the history
  • Loading branch information
jungtaekkim committed Jan 4, 2024
1 parent 0221491 commit 5b26b1d
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
2 changes: 1 addition & 1 deletion 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
Expand Down
2 changes: 1 addition & 1 deletion 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
#

Expand Down
2 changes: 1 addition & 1 deletion 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
#

Expand Down
2 changes: 1 addition & 1 deletion 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
#

Expand Down
11 changes: 9 additions & 2 deletions 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']
Expand All @@ -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,
Expand Down

0 comments on commit 5b26b1d

Please sign in to comment.