Jurk06 commited on
Commit
1631290
1 Parent(s): 4cd666d

Create setup.py

Browse files
Files changed (1) hide show
  1. setup.py +26 -0
setup.py ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from setuptools import setup, find_packages
2
+
3
+ # Basic package information
4
+ setup(
5
+ name='geopy', # Name of your package
6
+ version='2.3.0', # Version number
7
+ author='Jurk06',
8
+ author_email='ju.rabikumarsingh@gmail.com',
9
+ description='A brief description of your package',
10
+ url='https://huggingface.co/spaces/Jurk06/geocoding-gradio?logs=build', # Project homepage or repository
11
+ packages=find_packages(), # Automatically find packages in the project directory
12
+ install_requires=[ # List of required dependencies
13
+ 'gradio'
14
+ ],
15
+ entry_points={ # Define scripts or console entry points
16
+ 'console_scripts': [
17
+ 'myscript=mypackage.cli:main', # Example script entry point
18
+ ],
19
+ },
20
+ classifiers=[ # Categorize your package for easier discovery
21
+ 'Programming Language :: Python :: 3',
22
+ 'License :: OSI Approved :: MIT License',
23
+ 'Operating System :: OS Independent',
24
+ 'Topic :: Scientific/Engineering :: Artificial Intelligence', # Adjust as needed
25
+ ],
26
+ )