first commit

This commit is contained in:
louisnw
2023-05-10 20:45:23 +01:00
commit 5b0a8cd51f
30 changed files with 19215 additions and 0 deletions

15
setup.py Normal file
View File

@ -0,0 +1,15 @@
from setuptools import setup, find_packages
setup(
name='lightweight_charts',
version='1.0.0',
packages=find_packages(),
install_requires=[
'pandas',
'pywebview',
],
# Additional package metadata
author='louisnw01',
description="Python framework for TradingView's Lightweight Charts JavaScript library.",
url='https://github.com/SORT-THIS-OUT',
)