0

I am trying to create a wheel file. The python code uses geopandas library. Hence as a additional requirement I have added geopandas to the requirements parameter under setup.py file but its showing an error while installing with wheel file. the error is w.r.t Fiona library. What is the best way to solve the issue?

  import setuptools
    
    setuptools.setup(
        name="abc",
        version="0.0.1",
        author="abc",
        packages=setuptools.find_packages(),
        classifiers=[
            "Programming Language :: Python :: 3",
            "License :: OSI Approved :: MIT License",
            "Operating System :: OS Independent",
            ],
        python_requires='>=3.7',
        install_requires=[
                          'geojson',
                          'geopandas>=0.5.0']
        )

Error: ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output. enter image description here

gm tom
  • 101
  • 6

0 Answers0