-
Notifications
You must be signed in to change notification settings - Fork 118
/
setup.py
29 lines (25 loc) · 954 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
28
29
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='pycpd',
version='2.0.2',
description='Pure Numpy Implementation of the Coherent Point Drift Algorithm',
long_description=readme(),
url='https://github.com/siavashk/pycpd',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering',
],
keywords='image processing, point cloud, registration, mesh, surface',
author='Siavash Khallaghi',
author_email='[email protected]',
license='MIT',
packages=['pycpd'],
install_requires=['numpy', 'future'],
zip_safe=False)