forked from dfki-ric/pytransform3d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 1.34 KB
/
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
33
34
#!/usr/bin/env python
from setuptools import setup, find_packages
import pytransform3d
if __name__ == "__main__":
with open("README.md", "r") as f:
long_description = f.read()
setup(name="pytransform3d",
version=pytransform3d.__version__,
author='Alexander Fabisch',
author_email='afabisch@googlemail.com',
url='https://github.com/rock-learning/pytransform3d',
description='3D transformations for Python',
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Visualization",
],
license='BSD-3-Clause',
packages=find_packages(),
install_requires=["numpy", "scipy", "matplotlib", "lxml",
"beautifulsoup4"],
extras_require={
"all": ["pydot", "trimesh", "open3d"],
"doc": ["numpydoc", "sphinx", "sphinx-gallery", "sphinx-bootstrap-theme"],
"test": ["nose", "coverage"]
}
)