Spaces:
Runtime error
Runtime error
from setuptools import setup, find_packages | |
# Basic package information | |
setup( | |
name='geopy', # Name of your package | |
version='2.3.0', # Version number | |
author='Jurk06', | |
author_email='ju.rabikumarsingh@gmail.com', | |
description='A brief description of your package', | |
url='https://huggingface.co/spaces/Jurk06/geocoding-gradio?logs=build', # Project homepage or repository | |
packages=find_packages(), # Automatically find packages in the project directory | |
install_requires=[ # List of required dependencies | |
'gradio' | |
], | |
entry_points={ # Define scripts or console entry points | |
'console_scripts': [ | |
'myscript=mypackage.cli:main', # Example script entry point | |
], | |
}, | |
classifiers=[ # Categorize your package for easier discovery | |
'Programming Language :: Python :: 3', | |
'License :: OSI Approved :: MIT License', | |
'Operating System :: OS Independent', | |
'Topic :: Scientific/Engineering :: Artificial Intelligence', # Adjust as needed | |
], | |
) | |