Skip to content

Commit

Permalink
Update classifiers in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcCote committed Jun 18, 2024
1 parent df5cfca commit 9f080a6
Showing 1 changed file with 23 additions and 19 deletions.
42 changes: 23 additions & 19 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import os.path
import sys
import os.path, sys
import re
import zipfile

Expand All @@ -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",
]
)

0 comments on commit 9f080a6

Please sign in to comment.