|
1 | 1 | from setuptools import find_packages, setup |
2 | 2 |
|
3 | | -with open('requirements.txt') as f: |
4 | | - requirements = f.read().splitlines() |
| 3 | +with open('README.md', 'r', encoding='utf-8') as f: |
| 4 | + readme = f.read() |
5 | 5 |
|
6 | 6 | setup( |
7 | 7 | name="lazydev", |
8 | 8 | version='0.0.2', |
9 | | - description='AI developer for lazy programmer', |
10 | 9 | packages=find_packages(), |
11 | | - install_requires=requirements, |
12 | | - author='Anirban Kat', |
13 | | - |
| 10 | + install_requires=[ |
| 11 | + "langchain>=0.0.188", |
| 12 | + "openai>=0.27.7" |
| 13 | + ], |
14 | 14 | entry_points={ |
15 | 15 | 'console_scripts': [ |
16 | 16 | 'lazydev = lazydev:run', |
17 | 17 | ], |
18 | 18 | }, |
| 19 | + author='Anirban Kat', |
| 20 | + |
| 21 | + description='AI developer for lazy programmer', |
| 22 | + long_description=readme, # Assign the contents of README.md to long_description |
| 23 | + long_description_content_type='text/markdown', # Specify the type of long description |
| 24 | + url='https://github.com/thecodacus/lazy-dev', |
| 25 | + classifiers=[ |
| 26 | + 'Development Status :: 5 - Production/Stable', |
| 27 | + 'Intended Audience :: Developers', |
| 28 | + 'License :: OSI Approved :: Apache Software License', |
| 29 | + 'Operating System :: OS Independent', |
| 30 | + 'Programming Language :: Python :: 3', |
| 31 | + 'Programming Language :: Python :: 3.8', |
| 32 | + 'Programming Language :: Python :: 3.9', |
| 33 | + 'Programming Language :: Python :: 3.10', |
| 34 | + ], |
19 | 35 | # other relevant information |
20 | 36 |
|
21 | 37 | # # You can specify package data if needed |
|
0 commit comments