forked from Benny-/Yahoo-ticker-symbol-downloader
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·32 lines (29 loc) · 1.08 KB
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name = 'Yahoo-ticker-downloader',
version = '3.0.2',
author = 'Vlad Wulf',
author_email = 'agaev.vladimir@gmail.com',
url='https://github.com/VladWulf/Yahoo-ticker-symbol-downloader',
license='BSD3',
keywords = "market finance yahoo ticker stock stocks etf future futures index mutualfund currency warrant bond bonds".split(),
description='A web scraper for ticker symbols from yahoo finance',
long_description = open('README.rst').read(),
packages = find_packages(),
scripts = ['YahooTickerDownloader.py'],
install_requires=[
"requests >= 2.4.3",
"tablib >= 0.9.11",
"backports.csv >= 1.0.4",
],
classifiers=[
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Environment :: Console",
"Topic :: Office/Business :: Financial :: Investment",
"License :: OSI Approved :: BSD License",
],
)