- Added missing docstrings (line.set(), chart.hide(), chart.exit()).

- Updated chart.exit() to destroy objects and terminate the webview process.
- Fixed WxChart not expanding correctly and removed its width and height parameters.
- Fixed KeyboardInterrupt error message when using show(block=True).
This commit is contained in:
louisnw
2023-05-12 12:56:53 +01:00
parent 5b0a8cd51f
commit d8424d6da3
4 changed files with 39 additions and 12 deletions

View File

@ -1,15 +1,20 @@
from setuptools import setup, find_packages
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='lightweight_charts',
version='1.0.0',
version='1.0.1',
packages=find_packages(),
python_requires='>=3.9',
install_requires=[
'pandas',
'pywebview',
],
# Additional package metadata
author='louisnw01',
author='louisnw',
license='MIT',
description="Python framework for TradingView's Lightweight Charts JavaScript library.",
url='https://github.com/SORT-THIS-OUT',
)
long_description=long_description,
url='https://github.com/louisnw01/lightweight-charts-python',
)