-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (38 loc) · 1.35 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from codecs import open
from os import path
here=path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description=f.read()
print find_packages()
setup(
name='extractor_ply2las',
version='2.0.0',
description='convert 3D PLY files to LAS format',
long_description=long_description,
entry_points={
'console_scripts': [
'terra_ply2las.py=ply2las.terra_ply2las:main',
],
},
install_requires=[
'pika>=0.10.0',
'requests>=2.11.0',
'pyclowder'
],
dependency_links=['https://opensource.ncsa.illinois.edu/bitbucket/rest/archive/latest/projects/CATS/repos/pyclowder2/archive?format=zip'],
packages=find_packages(),
# basic package metadata
url='https://github.com/terraref/extractors-3dscanner',
author='Max Burnette',
author_email='[email protected]',
license='NCSA',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: NCSA License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
keywords='terraref clowder extractor'
)