Skip to content

Commit d46f79b

Browse files
committed
updated code to add setup tool
1 parent 38ddc50 commit d46f79b

File tree

2 files changed

+22
-35
lines changed

2 files changed

+22
-35
lines changed

requirements.txt

Lines changed: 0 additions & 29 deletions
This file was deleted.

setup.py

Lines changed: 22 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,37 @@
11
from setuptools import find_packages, setup
22

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()
55

66
setup(
77
name="lazydev",
88
version='0.0.2',
9-
description='AI developer for lazy programmer',
109
packages=find_packages(),
11-
install_requires=requirements,
12-
author='Anirban Kat',
13-
author_email='[email protected]',
10+
install_requires=[
11+
"langchain>=0.0.188",
12+
"openai>=0.27.7"
13+
],
1414
entry_points={
1515
'console_scripts': [
1616
'lazydev = lazydev:run',
1717
],
1818
},
19+
author='Anirban Kat',
20+
author_email='[email protected]',
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+
],
1935
# other relevant information
2036

2137
# # You can specify package data if needed

0 commit comments

Comments
 (0)