Files
lightweight-charts-python/setup.py
louisnw 7c125b24ec - Added support for PyQt.
- Refactored widgets to catch ModuleNotFoundErrors.
2023-05-15 12:28:25 +01:00

22 lines
609 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.3',
packages=find_packages(),
python_requires='>=3.9',
install_requires=[
'pandas',
'pywebview',
],
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',
)