-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 758 Bytes
/
setup.py
File metadata and controls
35 lines (33 loc) · 758 Bytes
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
# from setuptools import setup
# # from setuptools import setup, find_packages
# setup(
# name='chat2note',
# version='1.0',
# py_modules=['chat2note'],
# install_requires=[
# "openai",
# "DrissionPage",
# "python-dotenv"
# ], # 如果有额外的依赖包,请在这里添加
# entry_points='''
# [console_scripts]
# chat2note=main:main
# ''',
# )
# setup.py
from setuptools import setup, find_packages
setup(
name='chat2note',
version='0.1.3',
packages=find_packages(),
entry_points={
'console_scripts': [
'chat2note=cli.cli:main',
],
},
install_requires=[
"openai",
"DrissionPage",
"python-dotenv"
],
)