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
|
"""
$Id$
"""
try:
from setuptools import setup, Extension
except ImportError:
from distutils.core import setup, Extension
from sys import version_info
try:
readme = file('README.txt','rb').read()
except:
readme = ''
install_requires = ['setuptools']
import os
version = '1.8.0'
import socket
# if we're building on Howard's XP VM, we'll include DLLs from his setup
if socket.gethostname() == 'fire-windows':
data_files=[('DLLs',[r'D:\liblas\bin\RelWithDebInfo\liblas_c.dll',
r'D:\liblas\bin\RelWithDebInfo\liblas.dll',]),]
else:
data_files = None
setup(name = 'libLAS',
version = version,
description = 'LAS 1.0/1.1/1.2 LiDAR data format translation',
license = 'BSD',
keywords = 'DEM elevation LIDAR',
author = 'Howard Butler',
author_email = 'hobu.inc@gmail.com',
maintainer = 'Howard Butler',
maintainer_email = 'hobu.inc@gmail.com',
url = 'http://liblas.org',
long_description = readme,
packages = ['liblas'],
install_requires = install_requires,
test_suite = 'tests.test_suite',
data_files = data_files,
zip_safe = False,
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: GIS',
]
)
|