CEDApy/setup.py

34 lines
917 B
Python
Raw Normal View History

2021-05-27 09:39:30 +00:00
from setuptools import setup, find_packages
import os
setup(
name = "CEDApy",
2021-05-27 11:56:27 +00:00
version = "0.2-beta",
keywords = "economic data",
2021-05-27 09:39:30 +00:00
long_description = open(
os.path.join(
os.path.dirname(__file__),
'README.md'
)).read(),
2021-05-27 11:37:39 +00:00
long_description_content_type='text/markdown',
author = "TerenceCKLau",
2021-05-27 09:39:30 +00:00
author_email = "terenceliu1012@outlook.com",
url = "https://github.com/TerenceLiu98/CEDApy",
packages = find_packages(),
2021-05-27 11:37:39 +00:00
license = "MIT",
2021-05-29 08:41:51 +00:00
install_requires=[
"numpy>=1.15.4",
"pandas>=0.25",
"requests>=2.22.0",
"demjson>=2.2.4",
"pillow>=6.2.0",
"xlrd==1.2.0",
"tqdm>=4.43.0",
"tabulate>=0.8.6",
"fake_useragent"
],
2021-05-27 11:37:39 +00:00
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
2021-05-27 09:39:30 +00:00
)