From 1b29d24383d72f3e5e9700e7cef84d170dd51961 Mon Sep 17 00:00:00 2001 From: Paul Melnikow Date: Wed, 19 Feb 2020 11:40:24 -0500 Subject: [PATCH] RELEASE 2.0.0rc5 --- python/setup.py | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/python/setup.py b/python/setup.py index bf1b8410..d7aa0ca2 100644 --- a/python/setup.py +++ b/python/setup.py @@ -82,14 +82,28 @@ def __str__(self): setuptools.setup( name="tinyobjloader", - version="0.1", - description="Python module for tinyobjloader", + version="2.0.0rc5", + description="Tiny but powerful Wavefront OBJ loader", long_description=long_description, long_description_content_type="text/markdown", author="Syoyo Fujita", author_email="syoyo@lighttransport.com", - url="https://github.com/syoyo/tinyobjloader", - classifiers=["License :: OSI Approved :: MIT License"], + url="https://github.com/tinyobjloader/tinyobjloader", + project_urls={ + "Issue Tracker": "https://github.com/tinyobjloader/tinyobjloader/issues", + }, + classifiers=[ + "Development Status :: 5 - Production/Stable", + "Intended Audience :: Developers", + "Intended Audience :: Science/Research", + "Intended Audience :: Manufacturing", + "Topic :: Artistic Software", + "Topic :: Multimedia :: Graphics :: 3D Modeling", + "Topic :: Scientific/Engineering :: Visualization", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + "Programming Language :: Python :: 3", + ], packages=setuptools.find_packages(), ext_modules=[m], )