-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
27 lines (26 loc) · 882 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
26
27
from setuptools import setup
from setuptools.extension import Extension
setup(
name = "tps",
version = "0.2",
description='Thin plate spline transformation',
author = "Oliver Tonnhofer",
author_email = "[email protected]",
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 :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: Scientific/Engineering",
],
test_suite = 'tps.test.test_suite',
ext_modules=[
Extension("tps._tps", ["tps/_tps.cpp", "tps/thinplatespline.cpp"], libraries=["stdc++"]),
],
)