-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
25 lines (24 loc) · 997 Bytes
/
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
from setuptools import setup
setup(
name="PySFCGAL",
version="2.0.0",
description="Python binding of SFCGAL.",
long_description="""Python binding of SFCGAL. SFCGAL is a C++ wrapper
library around CGAL with the aim of supporting ISO 191007:2013 and OGC
Simple Features for 3D operations.""",
url="https://gitlab.com/SFCGAL/pysfcgal",
author="Joshua Arnott (initial work) and Loïc Bartoletti (Oslandia)",
author_email="[email protected]",
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
],
packages=["pysfcgal"],
package_data={"pysfcgal": ["*.c"]},
setup_requires=["cffi>=1.0.0"],
cffi_modules=["pysfcgal/sfcgal_build.py:ffibuilder"],
install_requires=["cffi>=1.0.0"],
extras_require={"contract": ["icontract>=2.6.0"]}
)