- 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:
15
setup.py
15
setup.py
@ -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',
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user