From bea6543d9bc78b46f5968cbed62a577358fac772 Mon Sep 17 00:00:00 2001 From: Fabian Date: Tue, 18 Oct 2022 08:51:10 +0200 Subject: [PATCH] Added more tests --- setup.py | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/setup.py b/setup.py index 1148e85..c029591 100644 --- a/setup.py +++ b/setup.py @@ -18,14 +18,19 @@ extras["all"] = list(set(itertools.chain.from_iterable(map(lambda group: extras[ setup( author='Fabian Otto, Onur Celik', name='fancy_gym', - version='0.2', + version='0.3', classifiers=[ - # Python 3.7 is minimally supported - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", + 'Development Status :: 4 - Beta', + 'Intended Audience :: Science/Research', + 'License :: OSI Approved :: MIT License', + 'Natural Language :: English', + 'Operating System :: OS Independent', + 'Topic :: Scientific/Engineering :: Artificial Intelligence', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', ], extras_require=extras, install_requires=[ @@ -40,7 +45,7 @@ setup( }, python_requires=">=3.7", url='https://github.com/ALRhub/fancy_gym/', - # license='AGPL-3.0 license', + license='MIT license', author_email='', description='Fancy Gym: Unifying interface for various RL benchmarks with support for Black Box approaches.' )