forked from tradingeconomics/tradingeconomics-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
63 lines (59 loc) · 1.92 KB
/
Copy pathsetup.py
File metadata and controls
63 lines (59 loc) · 1.92 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
from setuptools import setup, find_packages
from os import path
import io
def readme():
this_directory = path.abspath(path.dirname(__file__))
with io.open(path.join(this_directory, "README.rst"), encoding="utf-8") as f:
return f.read()
setup(
name="tradingeconomics",
packages=find_packages(exclude=["tests*"]),
version="4.5.11",
description="PyPI client for the Trading Economics economic and financial data API.",
long_description=readme(),
long_description_content_type="text/x-rst",
author="Trading Economics",
author_email="support@tradingeconomics.com",
license="MIT",
url="https://github.com/tradingeconomics/tradingeconomics-python",
download_url="https://github.com/tradingeconomics/tradingeconomics-python/tree/main/dist",
keywords=[
"trading-economics",
"economic-indicators",
"economic-calendar",
"macroeconomics",
"markets",
"financials",
"historical-data",
"forecasts",
"news",
"stocks",
"bonds",
"commodities",
"forex",
"earnings",
"credit-ratings",
"api-client",
"rest-api",
"sdk",
],
python_requires=">=3.8",
classifiers=[
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Office/Business :: Financial :: Point-Of-Sale",
],
install_requires=[
"pandas>=2.0,<4",
"websocket-client>=1.0",
],
)