forked from mariostoev/finviz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (31 loc) · 995 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
31
32
from distutils.core import setup
setup(
name="finviz",
packages=["finviz", "finviz.helper_functions"],
version="1.4.6",
license="MIT",
description="Unofficial API for FinViz.com",
author="Mario Stoev, James Bury",
author_email="[email protected], [email protected]",
url="https://github.com/mariostoev/finviz",
download_url="https://github.com/mariostoev/finviz/archive/v1.4.6.tar.gz",
keywords=["finviz", "api", "screener", "finviz api", "charts", "scraper"],
install_requires=[
"lxml",
"requests",
"aiohttp",
"urllib3",
"cssselect",
"user_agent",
"beautifulsoup4",
"tqdm",
"tenacity",
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
],
)