-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
19 lines (18 loc) · 863 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup, find_packages
setup(
name='Dev', # Name of the package
version='1.1.0', # Initial version
author='GitCoder052023', # Author's name
author_email='[email protected]', # Author's email (replace with yours)
description='Dev is a multi-purpose tool designed to streamline your coding workflow and leverage the power of '
'large language models to enhance your productivity. It automates several common tasks and provides '
'valuable insights through AI capabilities, making your coding experience smoother and more efficient.',
packages=find_packages(), # Automatically find packages in the directory
install_requires=[
'pyperclip',
'langchain_google_genai',
'pyautogui',
'paperclip',
'pymongo'
], # List of dependencies
)