-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 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
from setuptools import setup, find_packages
DESCRIPTION = "Converts YFinance's tables in other timeframe in an faster way"
with open("README.md", "r") as rdm:
LONG_DESCRIPTION = rdm.read()
# Setting up
setup(
name="yfinance_timeframe_converter",
version='1.0.2',
author="Lucas Rocha",
url="https://github.com/LucasRocha-Png/yfinance-timeframe-converter",
author_email="lucasrocha.png@gmail.com",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
packages=["yfinance_timeframe_converter"],
install_requires=['yfinance>=0.1.63', 'pandas>=1.3.3', 'pandas-datareader>=0.10.0'],
keywords=['python', 'yfinance', 'changer', 'yahoo', 'finance'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.7",
"Programming Language :: C++",
"License :: OSI Approved :: Apache Software License",
"Operating System :: Unix",
"Operating System :: Microsoft :: Windows"
]
)