-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (38 loc) · 1.28 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
34
35
36
37
38
'''
Author: Chris Xiao [email protected]
Date: 2024-03-31 01:27:47
LastEditors: Chris Xiao [email protected]
LastEditTime: 2024-03-31 01:55:43
FilePath: /CPD-Pytorch/setup.py
Description:
I Love IU
Copyright (c) 2024 by Chris Xiao [email protected], All Rights Reserved.
'''
from setuptools import setup
'''
def readme():
with open('README.rst') as f:
return f.read()
'''
setup(name = 'torchcpd',
version='0.0.1',
description='Pure Numpy Implementation of the Coherent Point Drift Algorithm',
#long_description=readme(),
url='https://github.com/mikami520/CPD-Pytorch',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Apache 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='pytorch, image processing, point cloud, registration, mesh, surface',
author='Yuliang Xiao',
author_email='[email protected]',
license='Apache',
packages=['torchcpd'],
install_requires=['torch', 'future', 'matplotlib'],
zip_safe=False
)