forked from IRIM-Technology-Transition-Lab/quaternions
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
32 lines (28 loc) · 966 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
31
32
from setuptools import setup, find_packages
def readme():
with open('README.rst') as f:
return f.read()
setup(name='quaternions',
version='0.6',
description='A package to handle 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',
url='https://github.com/mjsobrep/quaternions',
author='Michael Sobrepera',
author_email='[email protected]',
license='MIT',
packages=find_packages(
exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
install_requires=[],
include_package_data=True,
zip_safe=False,
test_suite="tests"
)