-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
89160b5
commit 20a8cd9
Showing
7 changed files
with
54 additions
and
676 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,61 @@ | ||
import os | ||
import sys | ||
import numpy | ||
from setuptools import setup, Extension | ||
from setuptools.command.build_ext import build_ext | ||
from setuptools.command.build_ext import build_ext as _build_ext | ||
from io import open as io_open | ||
|
||
if sys.version_info[0] < 3: | ||
import __builtin__ as builtins | ||
else: | ||
import builtins | ||
|
||
# Version from file | ||
__version__ = None | ||
version_file = os.path.join(os.path.dirname(__file__), 'tetgen', '_version.py') | ||
with io_open(version_file, mode='r') as fd: | ||
exec(fd.read()) | ||
|
||
# for: the cc1plus: warning: command line option '-Wstrict-prototypes' | ||
class build_ext(_build_ext): | ||
def finalize_options(self): | ||
_build_ext.finalize_options(self) | ||
# prevent numpy from thinking it is still in its setup process: | ||
try: | ||
del builtins.__NUMPY_SETUP__ | ||
except AttributeError: | ||
pass | ||
import numpy | ||
self.include_dirs.append(numpy.get_include()) | ||
|
||
def build_extensions(self): | ||
try: | ||
self.compiler.compiler_so.remove("-Wstrict-prototypes") | ||
except (AttributeError, ValueError): | ||
pass | ||
_build_ext.build_extensions(self) | ||
|
||
setup( | ||
name='tetgen', | ||
packages = ['tetgen'], | ||
version=__version__, | ||
description='Python interface to pytetgen', | ||
long_description=open('README.rst').read(), | ||
description='Python interface to pytetgen', | ||
long_description=open('README.rst').read(), | ||
|
||
author='Alex Kaszynski', | ||
author_email='[email protected]', | ||
url = 'https://github.com/akaszynski/tetgen', | ||
url = 'https://github.com/akaszynski/tetgen', | ||
|
||
license='MIT', | ||
license='MIT', | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Science/Research', | ||
'License :: OSI Approved :: MIT License', | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Science/Research', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
], | ||
|
||
|
||
# Build cython modules | ||
cmdclass={'build_ext': build_ext}, | ||
ext_modules = [Extension("tetgen._tetgen", | ||
|
@@ -44,15 +64,14 @@ | |
'tetgen/cython/tetgen/predicates.cxx', | ||
'tetgen/cython/tetgen/tetgen_wrap.cxx'], | ||
language='c++', | ||
extra_compile_args=["-O3"], | ||
extra_compile_args=['-O3', '-w'], | ||
define_macros=[('TETLIBRARY', None)]), | ||
], | ||
|
||
keywords='TetGen', | ||
|
||
include_dirs=[numpy.get_include()], | ||
|
||
# Might work with earlier versions | ||
install_requires=['numpy>1.9.3', 'pymeshfix'] | ||
|
||
install_requires=['numpy>1.9.3', | ||
'pymeshfix', | ||
'vtkInterface>=0.8.0'] | ||
|
||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
from tetgen.tetgen import TetGen | ||
from tetgen import _tetgen | ||
from tetgen.pytetgen import TetGen |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
""" tetgen version """ | ||
|
||
# major, minor, patch, -extra | ||
version_info = 0, 1, 0 | ||
version_info = 0, 1, 1 | ||
|
||
# Nice string for the version | ||
__version__ = '.'.join(map(str, version_info)) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.