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 4e3483b
Showing 1 changed file with 26 additions and 19 deletions.
45 changes: 26 additions & 19 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os.path
import sys
import re
import os.path
import zipfile

from setuptools import setup
Expand All @@ -23,21 +23,28 @@
with open(os.path.join('scienceworld', 'version.py'), 'w') as f:
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(),
})
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'],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
]
)

0 comments on commit 4e3483b

Please sign in to comment.