-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 927 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (27 loc) · 927 Bytes
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
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='pyfedwatch',
version='1.2.0',
description='Python Implementation of the CME FedWatch Tool for Estimating Probabilities of Federal Funds Rate Changes at Upcoming FOMC Meetings.',
author='ALI RAHIMI',
author_email='a.rahimi.aut@gmail.com',
url='https://github.com/ARahimiQuant/pyfedwatch',
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=[
'pandas>=2.1.0',
'numpy>=1.25.2',
'python-dateutil>=2.8.2',
'pytz>=2023.3.post1',
'tzdata>=2023.3',
'matplotlib>=3.8.0',
'holidays>=0.32',
'openpyxl>=3.1.2',
'beautifulsoup4>=4.12.2',
'pandas_datareader==0.10.0',
],
license='Apache-2.0',
)