-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (32 loc) · 1 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
import setuptools
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setuptools.setup(
name='yfinance2pg', # Replace with your own username
version='1.0.1',
author='Regan Karlewicz',
author_email='[email protected]',
description='Download finance data from yfinance to postgres database',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/regan-karlewicz/yfinance2pg',
packages=setuptools.find_packages(),
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
entry_points='''
[console_scripts]
yfinance2pg=yfinance2pg.main:main
''',
install_requires=[
'yfinance>=0.1.55',
'psycopg2>=2.8.6',
'requests>=2.25.1',
'html5lib>=1.1',
'bs4>=0.0.1',
'multitasking>=0.0.9'
],
python_requires='>=3.6',
)