Skip to content

Commit b5990a9

Browse files
committed
Fix setup.py: requires->install_requires
1 parent a63fdce commit b5990a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
setup(
1919
name="PDAL",
2020
version=version,
21-
requires=["Python (>=3.0)", "Numpy"],
2221
description="Point cloud data processing",
2322
license="BSD",
2423
keywords="point cloud spatial",
@@ -31,6 +30,7 @@
3130
long_description_content_type="text/x-rst",
3231
test_suite="test",
3332
packages=["pdal"],
33+
install_requires=["numpy"],
3434
include_package_data=False,
3535
classifiers=[
3636
"Development Status :: 5 - Production/Stable",

0 commit comments

Comments
 (0)