Files
lightweight-charts-python/setup.py
louisnw da2a5103fa Enhancements & Bug Fixes
- Added the `color_based_on_candle` parameter to the legend, which will color the percentage change based on the candle color underneath the crosshair.
(#210)
- Fixed a bug which prevented the legend from turning off. (#216)
2023-12-10 19:48:27 +00:00

25 lines
686 B
Python

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.18.8',
packages=find_packages(),
python_requires='>=3.8',
install_requires=[
'pandas',
'pywebview>=4.3',
],
package_data={
'lightweight_charts': ['js/*.js'],
},
author='louisnw',
license='MIT',
description="Python framework for TradingView's Lightweight Charts JavaScript library.",
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/louisnw01/lightweight-charts-python',
)