Skip to content

Commit

Permalink
Add subdirectories, cmake files and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
rmsare committed Oct 24, 2019
1 parent 48a953d commit 3cf6210
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include CMakeLists.txt
recursive-include python/ *
recursive-include libmcc_lidar/ *
Empty file added python/__init__.py
Empty file.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,14 @@ def build_extension(self, ext):

setup(
name="pymcc_lidar",
version="1.2",
version="1.3",
author=["George Hilley", "Robert Sare"],
author_email="hilley@stanford.edu",
description="A Python package for point cloud classification using relative height",
license="MIT",
url="https://github.com/stgl/pymcc",
include_package_data=True,
data_files=[("", ["LICENSE"])],
data_files=[("", ["LICENSE.txt"])],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
Expand All @@ -86,7 +86,7 @@ def build_extension(self, ext):
install_requires=["cmake", "cython"],
ext_modules=[CMakeExtension("pymcc-lidar")],
cmdclass={"build_ext": cmake_build_ext},
packages=["."],
packages=setuptools.find_packages(),
ext_package=".",
package_dir={"": "."},
)

0 comments on commit 3cf6210

Please sign in to comment.