forked from sumit9926/tvdatafeed
-
Notifications
You must be signed in to change notification settings - Fork 150
/
setup.py
30 lines (28 loc) · 955 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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="tvdatafeed",
version="2.1.0",
packages=["tvDatafeed"],
url="https://github.com/rongardF/tvdatafeed/",
project_urls={
"YouTube": "https://youtube.com/StreamAlpha?sub_confirmation=1",
"Funding": "https://www.buymeacoffee.com/StreamAlpha",
"Telegram Channel": "https://t.me/streamAlpha",
"Source": "https://github.com/StreamAlpha/tvdatafeed/",
"Tracker": "https://github.com/StreamAlpha/tvdatafeed/issues",
},
license="MIT License",
author="@StreamAlpha",
author_email="",
description="TradingView historical data downloader",
long_description_content_type="text/markdown",
long_description=long_description,
install_requires=[
"setuptools",
"pandas",
"websocket-client",
"requests"
],
)