Skip to content

Commit

Permalink
setup.py exclude examples and benchmarks (#189)
Browse files Browse the repository at this point in the history
  • Loading branch information
kozinove committed Mar 20, 2024
1 parent 17c22d2 commit 0f04ac4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ def _get_requirements(req_name: str):

setup(
name='iOpt',
version='0.2.22',
description='Фреймворк для автоматического выбора значений параметров для математических моделей, ИИ и МО.',
version='0.4.0',
description='Framework for automatically tuning hyperparameter values for mathematical models, AI and ML.',
author='UNN Team',
author_email='',
long_description=read_me_description,
long_description_content_type="text/markdown",
url="https://github.com/aimclub/iOpt",
python_requires='>=3.8',
packages=find_packages(exclude=["*test*"]),
python_requires='>=3.9',
packages=find_packages(exclude=["*test*", "examples", "benchmarks"]),
install_requires=_get_requirements('requirements.txt'),
classifiers=[
"Programming Language :: Python :: 3",
Expand Down

0 comments on commit 0f04ac4

Please sign in to comment.