-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
53 lines (47 loc) · 1.54 KB
/
setup.py
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from setuptools import find_packages, setup
with open('README.md', 'r', encoding='utf-8') as f:
readme = f.read()
setup(
name="lazydev",
version='0.1.1',
packages=find_packages(),
install_requires=[
"langchain>=0.0.188",
"openai>=0.27.7"
],
entry_points={
'console_scripts': [
'lazydev = lazydev:run',
],
},
author='Anirban Kat',
author_email='[email protected]',
description='AI developer for lazy programmer',
long_description=readme, # Assign the contents of README.md to long_description
# Specify the type of long description
long_description_content_type='text/markdown',
url='https://github.com/thecodacus/lazy-dev',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
# other relevant information
# # You can specify package data if needed
# package_data={
# 'lazydev': ['*.txt', '*.csv'], # Include any additional files here
# },
# # You can also specify additional non-package data files
# data_files=[
# ('config', ['config.ini']),
# ],
)
# steps to build and publish
# source .venv/bin/activate
# python -m bild
# twine upload dist/*