Skip to content

Commit 56dbd8b

Browse files
committed
RELEASE 2.0.0rc5
1 parent fd47de4 commit 56dbd8b

File tree

2 files changed

+26
-8
lines changed

2 files changed

+26
-8
lines changed

azure-pipelines.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,14 @@ jobs:
1111
make && ./tester
1212
displayName: Run unit tests
1313
14+
- job: python_format
15+
pool: { vmImage: "ubuntu-latest" }
16+
steps:
17+
- script: |
18+
pip install black==19.10b0
19+
black --check python/
20+
displayName: Check Python code format
21+
1422
- job: linux
1523
pool: {vmImage: "Ubuntu-16.04"}
1624
steps:
@@ -24,10 +32,6 @@ jobs:
2432
cibuildwheel --output-dir wheelhouse .
2533
- task: PublishBuildArtifacts@1
2634
inputs: {pathtoPublish: 'python/wheelhouse'}
27-
- script: |
28-
pip install black==19.10b0
29-
black --check python/
30-
displayName: Check Python code format
3135

3236
- job: macos
3337
pool: {vmImage: 'macOS-10.13'}

python/setup.py

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,14 +82,28 @@ def __str__(self):
8282

8383
setuptools.setup(
8484
name="tinyobjloader",
85-
version="0.1",
86-
description="Python module for tinyobjloader",
85+
version="2.0.0rc5",
86+
description="Tiny but powerful Wavefront OBJ loader",
8787
long_description=long_description,
8888
long_description_content_type="text/markdown",
8989
author="Syoyo Fujita",
9090
author_email="syoyo@lighttransport.com",
91-
url="https://github.com/syoyo/tinyobjloader",
92-
classifiers=["License :: OSI Approved :: MIT License"],
91+
url="https://github.com/tinyobjloader/tinyobjloader",
92+
project_urls={
93+
"Issue Tracker": "https://github.com/tinyobjloader/tinyobjloader/issues",
94+
},
95+
classifiers=[
96+
"Development Status :: 5 - Production/Stable",
97+
"Intended Audience :: Developers",
98+
"Intended Audience :: Science/Research",
99+
"Intended Audience :: Manufacturing",
100+
"Topic :: Artistic Software",
101+
"Topic :: Multimedia :: Graphics :: 3D Modeling",
102+
"Topic :: Scientific/Engineering :: Visualization",
103+
"License :: OSI Approved :: MIT License"
104+
"Operating System :: OS Independent",
105+
"Programming Language :: Python :: 3"
106+
],
93107
packages=setuptools.find_packages(),
94108
ext_modules=[m],
95109
)

0 commit comments

Comments
 (0)