-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 1.09 KB
/
Copy pathsetup.py
File metadata and controls
30 lines (26 loc) · 1.09 KB
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 codecs import open
from setuptools import find_packages, setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name = "RotEx",
version = "0.2.0",
author = "dingle",
author_email = "zhangdingh_2004@hotmail.com",
description = "RotEx is a set of python helper functions to apply 3D rotation, especially Euler Angles, based on scipy.spatial.transform.Rotation",
long_description = long_description,
long_description_content_type = "text/markdown",
url = "https://github.com/dinglezhang/RotEx",
include_package_data = True,
install_requires = ['scipy'],
extras_require = {"dev": ['pytest']},
packages = find_packages(exclude = ["tests*"]),
keywords = ["euler-angles", "attitude", "rotation", "3d-rotation", "rotation-extension", "rotation-help"],
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License"
]
)