forked from olt/thinplatespline
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 981 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 981 Bytes
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
from setuptools import setup
from setuptools.extension import Extension
setup(
name = "tps",
version = "0.3",
description='Thin plate spline transformation',
author = "Oliver Tonnhofer",
author_email = "olt@omniscale.de",
license='MIT',
packages=['tps', 'tps.test'],
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT",
"Operating System :: OS Independent",
"Programming Language :: C",
"Programming Language :: C++",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
],
test_suite = 'tps.test.test_suite',
ext_modules=[
Extension("tps._tps", ["tps/_tps.cpp", "tps/thinplatespline.cpp"], libraries=["stdc++"]),
],
)