forked from dpguthrie/yahooquery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (39 loc) · 1.27 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
32
33
34
35
36
37
38
39
40
41
42
43
from setuptools import setup, find_packages
INSTALL_REQUIRES = [
'lxml==4.5.0',
'pandas>=0.24',
'requests-futures==1.0.0',
'selenium==3.141.0',
]
TEST_REQUIRES = [
# testing and coverage
'pytest', 'coverage', 'pytest-cov',
]
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="yahooquery",
version="2.2.7",
author="Doug Guthrie",
author_email="[email protected]",
description="Retrieve nearly all data from Yahoo Finance for one or more ticker symbols",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
packages=find_packages(),
url="https://yahooquery.dpguthrie.com",
install_requires=INSTALL_REQUIRES,
extras_require={
'test': TEST_REQUIRES + INSTALL_REQUIRES,
},
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
"Intended Audience :: Financial and Insurance Industry",
"Operating System :: OS Independent"
],
keywords='pandas, yahoo finance, finance, stocks, mutual funds, etfs'
)