-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (46 loc) · 1.45 KB
/
setup.py
File metadata and controls
47 lines (46 loc) · 1.45 KB
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
from setuptools import find_packages, setup
setup(
name="flsd",
version="0.2.0",
description="Financial data pipeline and dashboard system for FLSD",
author="FLSD Data Team",
packages=find_packages(),
python_requires=">=3.9",
install_requires=[
"numpy>=1.24.0",
"pandas>=2.0.0",
"plotly>=5.18.0",
"jupyter>=1.0.0",
"notebook>=7.0.0",
"scikit-learn>=1.3.0",
"statsmodels>=0.14.0",
"matplotlib==3.8.3",
"seaborn==0.13.2",
"scipy>=1.12.0",
"ipywidgets==8.1.2",
"nbconvert==7.16.4",
"streamlit>=1.32.0",
"streamlit-option-menu>=0.3.0",
"fastapi>=0.109.0",
"uvicorn[standard]>=0.27.0",
"python-multipart>=0.0.6",
],
entry_points={
"console_scripts": [
"flsd-run=src.run_services:main",
"flsd-api=src.api:start_api",
"flsd-dashboard=src.dashboard:run_dashboard",
"flsd-pipeline=src.pipeline:run_nightly_update",
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Financial and Insurance Industry",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Office/Business :: Financial",
],
)