-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 744 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
setup(
name='Platts_eWindow_dashboard', # Replace with your package name
version='1.0.5',
description='A Dash app for visualizing Platts eWindow data',
author='Magnum35puc',
packages=find_packages(where='src'), # Include all Python packages inside src/
package_dir={'': 'src'}, # Set src/ as the package directory
include_package_data=True, # Include non-python files like CSS
install_requires=[ # List your dependencies
'dash>=2.0.0',
'plotly>=5.0.0',
'pandas',
'requests',
],
entry_points={
'console_scripts': [
'start-dashboard=app.dashboard:main', # The command to run the app
],
},
)