-
Notifications
You must be signed in to change notification settings - Fork 224
/
setup.py
36 lines (33 loc) · 1010 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
33
34
35
36
from setuptools import setup, find_packages
version = '0.3.1'
with open("README.rst", "r") as fh:
long_description = fh.read()
setup(
name='pyntcloud',
version=version,
description='Python library for working with 3D point clouds.',
long_description=long_description,
long_description_content_type="text/x-rst",
url='https://github.com/daavoo/pyntcloud',
author='David de la Iglesia Castro',
author_email='[email protected]',
license='The MIT License',
packages=find_packages(),
include_package_data=True,
python_requires='>3.7',
install_requires=[
"numpy",
"scipy>=1.6.0",
"pandas",
],
extras_require={
'LAS': ["laspy", "lazrs"],
'PLOT': ["ipython", "matplotlib", "pyvista>=0.32.0"],
'NUMBA': ["numba"]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)