-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
33 lines (31 loc) · 1.3 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import distance3d
if __name__ == "__main__":
with open("README.md", "r") as f:
long_description = f.read()
setup(name="distance3d",
version=distance3d.__version__,
author="Alexander Fabisch",
author_email="[email protected]",
url="https://github.com/AlexanderFabisch/distance3d",
description="Distance computation and collision detection in 3D.",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"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>=1.18", "scipy", "pytransform3d",
"matplotlib", "numba"],
extras_require={
"all": ["open3d"],
"test": ["pytest", "pytest-cov"],
"doc": ["sphinx", "sphinx-gallery", "numpydoc"],
"benchmark": ["aabbtree"],
})