-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update 0.1.3 - Extended supported Python versions
- Loading branch information
1 parent
cf73dd9
commit 3a96210
Showing
3 changed files
with
20 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .cot_reports import cot_hist, cot_year, cot_all, cot_all_reports | ||
|
||
__version__ = '0.1.2' | ||
__version__ = '0.1.3' | ||
__author__ = 'Niall Delventhal' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,19 +3,30 @@ | |
setuptools.setup( | ||
name="cot_reports", | ||
packages = ["cot_reports"], | ||
version="0.1.2", | ||
version="0.1.3", | ||
license='MIT', | ||
url="https://github.com/NDelventhal/cot_grades", | ||
url="https://github.com/NDelventhal/cot_reports", | ||
author="Niall Delventhal", | ||
author_email="[email protected]", | ||
description="is a Python library, which fetches the Commitments of Trader reports of the Commodity Futures Trading Commission (CFTC). The following COT reports are supported: Legacy Futures-only, Legacy Futures-and-Options, Supplemental Futures-and-Options, Disaggregated Futures-only, Disaggregated Futures-and-Options, Traders in Financial Futures (TFF) Futures-only and Traders in Financial Futures (TFF) Futures-and-Options.", | ||
long_description=open('README.md', encoding='utf-8').read(), | ||
long_description_content_type='text/markdown', | ||
download_url = 'https://github.com/NDelventhal/cot_reports/archive/v_012.tar.gz', | ||
download_url = 'https://github.com/NDelventhal/cot_reports/archive/v_013.tar.gz', | ||
install_requires=['pandas','requests','beautifulsoup4'], | ||
classifiers=['Intended Audience :: Science/Research', | ||
classifiers=[ | ||
'Intended Audience :: Science/Research', | ||
'Intended Audience :: Financial and Insurance Industry', | ||
'License :: OSI Approved :: MIT License', | ||
'Development Status :: 3 - Alpha', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3'], | ||
) | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
'Programming Language :: Python :: 3.12'], | ||
) | ||
|
||
|
||
|