SparseAGS / liegroups /setup.py
qitaoz's picture
init commit
26ce2a9 verified
raw
history blame contribute delete
333 Bytes
from setuptools import setup
setup(
name='liegroups',
version='1.1.0',
description='Lie groups in Python',
author='Lee Clement',
author_email='[email protected]',
license='MIT',
packages=['liegroups', 'liegroups.numpy', 'liegroups.torch'],
install_requires=['future', 'numpy']
)