diff --git a/setup.py b/setup.py index f8af64a..a24a308 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,4 @@ -import os.path -import sys +import os.path, sys import re import zipfile @@ -24,20 +23,25 @@ f.write(f'__version__ = {VERSION!r}\n') setup(name='scienceworld', - version=VERSION, - description='ScienceWorld: An interactive text environment to study AI' + - 'agents on accomplishing tasks from the standardized elementary science curriculum.', - author='Peter Jansen', - packages=['scienceworld'], - include_package_data=True, - package_dir={'scienceworld': 'scienceworld'}, - package_data={'scienceworld': [JAR_FILE, OBJECTS_LUT_FILE, TASKS_JSON_FILE]}, - url="https://scienceworld.github.io", - long_description=open("README.md").read(), - long_description_content_type="text/markdown", - python_requires='>=3.7', - install_requires=open('requirements.txt').readlines(), - extras_require={ - 'webserver': open('requirements.txt').readlines() + ['pywebio'], - 'testing': open(f'{BASEPATH}/requirements-dev.txt').readlines(), - }) + version=VERSION, + description='ScienceWorld: An interactive text environment to study AI agents on accomplishing tasks from the standardized elementary science curriculum.', + author='Peter Jansen', + packages=['scienceworld'], + include_package_data=True, + package_dir={'scienceworld': 'scienceworld'}, + package_data={'scienceworld': [JAR_FILE, OBJECTS_LUT_FILE, TASKS_JSON_FILE]}, + url="https://scienceworld.github.io", + long_description=open("README.md").read(), + long_description_content_type="text/markdown", + python_requires='>=3.7', + install_requires=open('requirements.txt').readlines(), + extras_require={ + 'webserver': open('requirements.txt').readlines() + ['pywebio'], + }, + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: Apache Software License", + "Operating System :: POSIX :: Linux", + "Operating System :: MacOS :: MacOS X", + ] +)