-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (42 loc) · 1.17 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
33
34
35
36
37
38
39
40
41
42
from setuptools import setup, find_packages
import os
setup(
name = "CEDApy",
version = "0.3.6",
keywords = "quantitative economic data",
long_description = open(
os.path.join(
os.path.dirname(__file__),
'README.md'
)).read(),
long_description_content_type='text/markdown',
author = "TerenceCKLau",
author_email = "[email protected]",
url = "https://github.com/TerenceLiu98/CEDApy",
packages = find_packages(exclude=["test", "example"]),
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",
"bs4",
"urllib3>=1.26.5",
"fake-useragent",
"xmltodict",
"tqdm",
"pygtrans",
"lxml"
],
license = "MIT",
classifiers=[
"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",
)