Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenMesh
openmesh-python
Commits
cbcf8ca5
Commit
cbcf8ca5
authored
Feb 16, 2018
by
Janis Born
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use setuptools_scm to read version number from latest git tag
parent
be8e97fc
Pipeline
#6243
passed with stages
in 6 minutes and 39 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
setup.py
setup.py
+8
-4
No files found.
setup.py
View file @
cbcf8ca5
...
...
@@ -76,15 +76,19 @@ class CMakeBuild(build_ext):
setup
(
name
=
'openmesh'
,
version
=
'0.0.1'
,
author
=
''
,
use_scm_version
=
{
'version_scheme'
:
'post-release'
,
},
author
=
'Alexander Dielen, Isaak Lim, Janis Born'
,
author_email
=
''
,
description
=
'Python bindings for OpenMesh.'
,
long_description
=
'OpenMesh is a generic and efficient data structure for representing and manipulating polygonal meshes.'
,
ext_modules
=
[
CMakeExtension
(
'openmesh'
)],
cmdclass
=
dict
(
build_ext
=
CMakeBuild
),
zip_safe
=
False
,
setup_requires
=
[
'numpy'
],
setup_requires
=
[
'setuptools_scm'
,
'numpy'
],
install_requires
=
[
'numpy'
],
options
=
{
'build'
:
{
'build_base'
:
'build-setuptools'
}}
options
=
{
'build'
:
{
'build_base'
:
'build-setuptools'
}},
license
=
'BSD 3-Clause'
,
url
=
'https://www.graphics.rwth-aachen.de:9000/OpenMesh/openmesh-python'
,
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment