Skip to content

Commit

Permalink
Add package info, license and bump version to 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rmsare committed Oct 24, 2019
1 parent ebd1015 commit 8dc37f6
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,24 @@ def build_extension(self, ext):

setup(
name="pymcc_lidar",
version="1.0",
version="1.1",
author=["Robert Sare", "George Hilley"],
author_email="hilleye@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"])],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_require=">=3.6",
install_requires=["cmake", "cython"],
ext_modules=[CMakeExtension("pymcc-lidar")],
cmdclass={"build_ext": cmake_build_ext},
packages=["."],
Expand Down

0 comments on commit 8dc37f6

Please sign in to comment.