This commit is contained in:
TerenceLiu98 2021-05-29 18:29:23 +08:00
parent 178ab55348
commit e819b9d4de
3 changed files with 14 additions and 9 deletions

View File

@ -5,7 +5,6 @@ import demjson
import requests
from fake_useragent import UserAgent
# TODO need add comments
url = {
"eurostat": "http://ec.europa.eu/eurostat/wdds/rest/data/v2.1/json/en/",

4
CEDA/Market/__init__.py Normal file
View File

@ -0,0 +1,4 @@
# -*- coding: utf-8 -*-
# time: 05/29/2021 UTC+8
# author: terencelau
# email: t_lau@uicstat.com

View File

@ -2,8 +2,8 @@ from setuptools import setup, find_packages
import os
setup(
name = "CEDApy",
version = "0.2-beta",
keywords = "economic data",
version = "1.0.3",
keywords = "quantitative economic data",
long_description = open(
os.path.join(
os.path.dirname(__file__),
@ -14,21 +14,23 @@ setup(
author_email = "terenceliu1012@outlook.com",
url = "https://github.com/TerenceLiu98/CEDApy",
packages = find_packages(),
license = "MIT",
install_requires=[
"matplotlib>=3.1.1",
"numpy>=1.15.4",
"pandas>=0.25",
"requests>=2.22.0",
"demjson>=2.2.4",
"pillow>=6.2.0",
"html5lib>=1.0.1",
"xlrd==1.2.0",
"tqdm>=4.43.0",
"tabulate>=0.8.6",
"fake_useragent"
],
license = "MIT",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
)