forked from mariostoev/finviz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (31 loc) · 920 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.3.4',
license='MIT',
description='Unofficial API for finviz.com',
author='Mario Stoev',
author_email='[email protected]',
url='https://github.com/mariostoev/finviz',
download_url='https://github.com/mariostoev/finviz/archive/1.3.4.tar.gz',
keywords=['finviz', 'api', 'screener', 'finviz api', 'charts', 'scraper'],
install_requires=[
'lxml',
'requests',
'aiohttp',
'urllib3',
'cssselect',
'user_agent'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
)