-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (30 loc) · 816 Bytes
/
setup.py
File metadata and controls
34 lines (30 loc) · 816 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
27
28
29
30
31
32
33
34
from setuptools import setup, find_packages
def read(filename):
with open(filename) as f:
return f.read()
setup(
name="building-boundary",
version="0.4.0",
author="Chris Lucas",
author_email="chris.lucas@geodan.nl",
description=(
"A script to trace the boundary of a building (part) in a point cloud."
),
license="MIT",
keywords="building boundary trace point cloud",
packages=find_packages(),
long_description=read('README.rst'),
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering :: GIS",
"License :: OSI Approved :: MIT License",
],
install_requires=[
'numpy',
'scipy',
'shapely',
# 'cgal-bindings',
'scikit-image'
],
zip_safe=False
)