Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 18 additions & 4 deletions python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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],
)