Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
openmesh-python
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
7
Issues
7
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenMesh
openmesh-python
Commits
c98135d1
Commit
c98135d1
authored
Feb 16, 2018
by
Isaak Lim
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
https://www.graphics.rwth-aachen.de:9000/OpenMesh/openmesh-python
parents
be6a484b
cbcf8ca5
Pipeline
#6244
failed with stages
in 5 minutes and 18 seconds
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
4 deletions
+37
-4
LICENSE
LICENSE
+29
-0
setup.py
setup.py
+8
-4
No files found.
LICENSE
0 → 100644
View file @
c98135d1
BSD 3-Clause License
Copyright (c) 2018, Visual Computing Institute, RWTH Aachen University
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
setup.py
View file @
c98135d1
...
...
@@ -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