From 3b46a861991f503a427decdab207f349f45cd3ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Alexandre=20C=C3=B4t=C3=A9?= Date: Wed, 22 Jan 2025 15:47:55 -0500 Subject: [PATCH] Make 1.6.2 release --- pyproject.toml | 29 ++++++++++++++++++++++++++++- setup.py | 20 +------------------- textworld/version.py | 2 +- 3 files changed, 30 insertions(+), 21 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f60f06cd..544d2079 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = "textworld@microsoft.com" }, +] +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" \ No newline at end of file diff --git a/setup.py b/setup.py index d8ad2c4f..cc66352e 100644 --- a/setup.py +++ b/setup.py @@ -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, @@ -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"], @@ -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", - ] + } ) diff --git a/textworld/version.py b/textworld/version.py index 270abd11..4a9b9788 100644 --- a/textworld/version.py +++ b/textworld/version.py @@ -1 +1 @@ -__version__ = '1.6.2rc5' +__version__ = '1.6.2'