File size: 333 Bytes
26ce2a9
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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']
)