Added more tests

This commit is contained in:
Fabian 2022-10-18 08:51:10 +02:00
parent 00f622e913
commit bea6543d9b

View File

@ -18,14 +18,19 @@ extras["all"] = list(set(itertools.chain.from_iterable(map(lambda group: extras[
setup( setup(
author='Fabian Otto, Onur Celik', author='Fabian Otto, Onur Celik',
name='fancy_gym', name='fancy_gym',
version='0.2', version='0.3',
classifiers=[ classifiers=[
# Python 3.7 is minimally supported 'Development Status :: 4 - Beta',
"Programming Language :: Python :: 3", 'Intended Audience :: Science/Research',
"Programming Language :: Python :: 3.7", 'License :: OSI Approved :: MIT License',
"Programming Language :: Python :: 3.8", 'Natural Language :: English',
"Programming Language :: Python :: 3.9", 'Operating System :: OS Independent',
"Programming Language :: Python :: 3.10", '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, extras_require=extras,
install_requires=[ install_requires=[
@ -40,7 +45,7 @@ setup(
}, },
python_requires=">=3.7", python_requires=">=3.7",
url='https://github.com/ALRhub/fancy_gym/', url='https://github.com/ALRhub/fancy_gym/',
# license='AGPL-3.0 license', license='MIT license',
author_email='', author_email='',
description='Fancy Gym: Unifying interface for various RL benchmarks with support for Black Box approaches.' description='Fancy Gym: Unifying interface for various RL benchmarks with support for Black Box approaches.'
) )