forked from daavoo/pyntcloud
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 653 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 653 Bytes
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
import pyntcloud
from setuptools import setup, find_packages
version = pyntcloud.__version__
setup(
name='pyntcloud',
version=version,
description='Python library for working with 3D point clouds.',
url='https://github.com/daavoo/pyntcloud',
author='David de la Iglesia Castro',
author_email='daviddelaiglesiacastro@gmail.com',
license='HAKUNA MATATA',
packages=find_packages(),
include_package_data=True,
install_requires=[
"numpy",
"scipy",
"pandas",
],
extras_require={
'LAS': ["laspy"],
'PLOT': ["ipython", "matplotlib"],
'NUMBA': ["numba"]
}
)