forked from laspy/laspy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
64 lines (57 loc) · 2.56 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
from setuptools import setup
import shutil
import laspy
# Get text from README.txt
try:
readme_text = file('README.rst', 'rb').read()
except:
readme_text = "See documentation at www.laspy.org"
# Make sure test data files are in the right place. There's probably a better
# way to do this, but it should work.
try:
tmpFile = open("simple.las")
tmpFile.close()
tmpFile = open("simple1_3.las")
tmpFile.close()
tmpFile = open("simple1_4.las")
tmpFile.close()
except:
shutil.copyfile("laspytest/data/simple.las", "simple.las")
shutil.copyfile("laspytest/data/simple1_3.las", "simple1_3.las")
shutil.copyfile("laspytest/data/simple1_4.las", "simple1_4.las")
setup(name = 'laspy',
version = laspy.__version__,
description = 'Native Python ASPRS LAS read/write library',
license = 'BSD',
keywords = 'gis lidar las',
author = 'Grant Brown',
author_email = '[email protected]',
url = 'https://github.com/grantbrown/laspy',
long_description = '''Laspy is a python library for reading, writing, and
modifying .LAS LIDAR files. It provides both a dimension
and point focused API. Documentation is available at
www.laspy.org, and the source is available at
www.github.com/grantbrown/laspy''',
packages = ['laspy', 'laspytest','laspy.tools'],
install_requires = ['numpy'],
test_suite = 'laspytest.test_laspy',
data_files = [("laspytest/data", ["simple.las", "simple1_3.las", "simple1_4.las"])],
include_package_data = True,
zip_safe = False,
entry_points = {'console_scripts':['lascopy = laspy.tools.lascopy:main',
'lasexplorer = laspy.tools.lasexplorer:main',
'lasnoise = laspy.tools.lasnoise:main',
'lasverify = laspy.tools.lasverify:main',
'lasvalidate = laspy.tools.lasvalidate:main',
'lasviewer = laspy.tools.lasviewer:main'
]},
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: GIS'
],
)