-
Notifications
You must be signed in to change notification settings - Fork 35
/
setup.py.off
45 lines (41 loc) · 1.43 KB
/
setup.py.off
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
from skbuild import setup
# Get the version from the pdal module
with open("pdal/__init__.py", "r") as fp:
for line in fp:
if line.startswith("__version__"):
version = line.split("=")[1].strip().strip("\"'")
break
else:
raise ValueError("Could not determine Python package version")
with open("README.rst", "r", encoding="utf-8") as fp:
readme = fp.read()
with open("CHANGES.txt", "r", encoding="utf-8") as fp:
changes = fp.read()
setup(
name="pdal",
version=version,
description="Point cloud data processing",
license="BSD",
keywords="point cloud spatial",
author="Howard Butler",
author_email="[email protected]",
maintainer="Howard Butler",
maintainer_email="[email protected]",
url="https://pdal.io",
long_description=readme + "\n\n" + changes,
long_description_content_type="text/x-rst",
packages=["pdal"],
install_requires=["numpy"],
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 :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: GIS",
],
)