-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathsetup.py
30 lines (28 loc) · 938 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="streamlit-lightweight-charts",
version="0.7.20",
author="Joe Rosa",
author_email="[email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
],
description="Wrapper for TradingView `lightweight-charts`",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/freyastreamlit/streamlit-lightweight-charts",
packages=['streamlit_lightweight_charts'],
package_data={
'streamlit_lightweight_charts': ['frontend/build/*','frontend/build/static/js/*'],
},
include_package_data=True,
python_requires=">=3.6",
install_requires=[
"streamlit >= 0.62",
],
)