File size: 1,051 Bytes
1631290
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
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
    ],
)