-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathsetup.py
32 lines (28 loc) · 1.52 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
import setuptools
setuptools.setup(
name="cot_reports",
packages = ["cot_reports"],
version="0.1.3",
license='MIT',
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_013.tar.gz',
install_requires=['pandas','requests','beautifulsoup4'],
classifiers=[
'Intended Audience :: Science/Research',
'Intended Audience :: Financial and Insurance Industry',
'License :: OSI Approved :: MIT License',
'Development Status :: 3 - Alpha',
'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'],
)