-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 854 Bytes
/
setup.py
File metadata and controls
32 lines (31 loc) · 854 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
from setuptools import find_packages, setup
setup(
name="pynance",
version="1.0.0",
packages=find_packages(),
install_requires=[
"setuptools==68.2.2",
"python-dateutil>=2.8.2",
"nltk==3.8.1",
"scikit-learn==1.4.0",
"bcrypt==4.1.2",
"Flask==3.0.2",
"Flask-Login==0.6.2",
"Flask-SQLAlchemy>=3.1.1",
"SQLAlchemy>=2.0.28",
"Flask-WTF==1.2.1",
"Werkzeug==3.0.2",
"python-dotenv==1.0.0",
"markupsafe>=2.1.5",
"Flask-Migrate",
"Flask-CORS==5.0.1",
],
entry_points={
"console_scripts": [
"calculator=calculator.main:main",
"file-organizer=file_organizer.file_organizer.main:main",
"pynance=pynance:main",
"pybot=pybot.__init__:run_chatbot",
],
},
)