Skip to content

Commit

Permalink
Merge pull request #365 from MarcCote/1.6.2
Browse files Browse the repository at this point in the history
Make 1.6.2 release
  • Loading branch information
MarcCote authored Jan 22, 2025
2 parents 2d17ef1 + 3b46a86 commit 370dfa7
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 21 deletions.
29 changes: 28 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,32 @@ build-backend = "setuptools.build_meta"

[project]
name = "textworld"
dynamic = ["version", "optional-dependencies", "dependencies", "readme"]
description = "Microsoft Textworld - A Text-based Learning Environment."
authors = [
{ name = "Marc-Alexandre Côté" },
{ name = "Microsoft Textworld", email = "[email protected]" },
]
readme = "README.md"
requires-python = ">=3.9"
dynamic = ["version", "optional-dependencies", "dependencies"]

classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Life",
]

license = {file = "LICENSE.txt"}

[project.urls]
Homepage = "https://github.com/microsoft/TextWorld"
Issues = "https://github.com/microsoft/TextWorld/issues"
20 changes: 1 addition & 19 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ def run(self):
setup(
name='textworld',
version=open(os.path.join("textworld", "version.py")).readlines()[0].split("=")[-1].strip("' \n"),
author='Microsoft Textworld',
cmdclass={
'build_py': CustomBuildPy,
'install': CustomInstall,
Expand All @@ -57,10 +56,7 @@ def run(self):
"scripts/tw-extract",
"scripts/tw-view",
],
license='',
zip_safe=False,
url="https://github.com/microsoft/TextWorld",
description="Microsoft Textworld - A Text-based Learning Environment.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
cffi_modules=["glk_build.py:ffibuilder"],
Expand All @@ -74,19 +70,5 @@ def run(self):
'vis': open('requirements-vis.txt').readlines(),
'pddl': open('requirements-pddl.txt').readlines(),
'full': open('requirements-full.txt').readlines(),
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Life",
]
}
)
2 changes: 1 addition & 1 deletion textworld/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.6.2rc5'
__version__ = '1.6.2'

0 comments on commit 370dfa7

Please sign in to comment.