forked from mariostoev/finviz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (30 loc) · 888 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 distutils.core import setup
setup(
name = 'finviz',
packages = [
'finviz',
'finviz.helper_functions'
],
version = '1.2.3',
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/v1.2.3.tar.gz',
keywords = ['finviz', 'api', 'screener', 'finviz api', 'charts', 'scraper'],
install_requires=[
'lxml',
'requests',
'aiohttp',
'urllib3',
'cssselect'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
)