-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 1.13 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import sys
try:
from skbuild import setup
except ImportError:
raise ImportError('scikit-build is required for installing')
setup(
name="cgal-py",
version="0.0.3",
description="Cython bindings of Computational Geometry Algorithms Library (CGAL)",
long_description='(see project homepage)',
author='Jacob Zhong',
author_email='cmpute@gmail.com',
url='https://github.com/cmpute/cgal.py',
download_url='https://github.com/cmpute/cgal.py/archive/master.zip',
license='BSD-3-Clause',
packages=['cgal'],
package_data={'cgal':['*.pxd', '*/*.pxd', '__init__.pxd', '*.h']},
install_requires=['numpy'],
setup_requires=['pybind11', 'scikit-build'],
extras_require={'test': ['pytest']},
classifiers=[
'Programming Language :: C++',
'Programming Language :: Cython',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Development Status :: 2 - Pre-Alpha',
'Topic :: Scientific/Engineering'
],
keywords=['cgal', 'geometry', 'algorithms', 'numpy', 'cython', 'binding'],
)