setup.py
Go to the documentation of this file.
1 from distutils.core import setup
2 
3 def readme():
4  with open('README.rst') as f:
5  return f.read()
6 
7 setup(name='dual_quaternions',
8  version='0.3.2',
9  description='Dual quaternion implementation',
10  long_description=readme(),
11  url='http://github.com/Achllle/dual_quaternions',
12  author='Achille Verheye',
13  author_email='achille.verheye@gmail.com',
14  license='MIT',
15  packages=['dual_quaternions'],
16  package_dir={'': 'src'},
17  install_requires=['numpy', 'pyquaternion'],
18  zip_safe=False,
19  test_suite='nose.collector',
20  tests_require='nose')
def readme()
Definition: setup.py:3


dual_quaternions
Author(s): achille
autogenerated on Mon Aug 17 2020 03:24:44