CEDApy/setup.py

43 lines
1.2 KiB
Python
Raw Normal View History

2021-05-27 09:39:30 +00:00
from setuptools import setup, find_packages
import os
setup(
name = "CEDApy",
2022-02-03 08:00:07 +00:00
version = "0.3.5",
2021-05-29 09:27:09 +00:00
keywords = "quantitative 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",
2022-02-09 14:08:39 +00:00
packages = (exclude=["test", "example"]),
2021-05-29 09:27:09 +00:00
install_requires=[
"matplotlib>=3.1.1",
"numpy>=1.15.4",
"pandas>=0.25",
"requests>=2.22.0",
"html5lib>=1.0.1",
"xlrd==1.2.0",
2021-06-04 16:11:06 +00:00
"bs4",
2021-06-07 04:53:37 +00:00
"urllib3>=1.26.5",
2022-02-09 14:08:39 +00:00
"fake-useragent",
"xmltodict",
"tqdm",
"pygtrans",
"lxml"
2021-05-29 09:27:09 +00:00
],
2021-05-27 11:37:39 +00:00
license = "MIT",
classifiers=[
2021-05-29 09:27:09 +00:00
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
2021-05-27 11:37:39 +00:00
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
2021-05-29 09:27:09 +00:00
python_requires=">=3.6",
2021-06-04 16:11:06 +00:00
)