-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
30 lines (27 loc) · 1017 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
30
from setuptools import setup, find_packages
def readme():
with open('README.rst') as f:
return f.read()
setup(name='dual-quaternions',
version='0.1',
description='A package to handle dual quaternions',
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
keywords='quaternion transformations dual',
url='https://github.com/IRIM-Technology-Transition-Lab/dual_quaternions',
author='Michael Sobrepera',
author_email='[email protected]',
license='Copyright (c) 2016 GTRC',
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
install_requires=['quaternions'],
include_package_data=True,
zip_safe=False,
test_suite="tests"
)