From 70a4cf2fe48274759ebe8ba4016070901faa6767 Mon Sep 17 00:00:00 2001 From: TerenceLiu98 Date: Thu, 27 May 2021 17:39:30 +0800 Subject: [PATCH] update README --- README.md | 2 +- setup.py | 17 +++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 setup.py diff --git a/README.md b/README.md index 6811d1f..a00b68c 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ This is a data collecting project, with both `python` and `R` * `python` version: (https://github.com/TerenceLiu98/CEDApy)[https://github.com/TerenceLiu98/CEDApy] -* `R` version: (https://github.com/TerenceLiu98/CEDAr)[https://github.com/TerenceLiu98/CEDAr] +* `R` version: (https://github.com/TerenceLiu98/CEDAr)[https://github.com/TerenceLiu98/CEDAr] *Not Start Yet* ## Acknowledgement diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..4d44ba8 --- /dev/null +++ b/setup.py @@ -0,0 +1,17 @@ +from setuptools import setup, find_packages +import os +setup( + name = "CEDApy", + version = "0.1", + keywords = "economic data api", + long_description = open( + os.path.join( + os.path.dirname(__file__), + 'README.md' + )).read(), + author = "JUNJIE-LIU", + author_email = "terenceliu1012@outlook.com", + url = "https://github.com/TerenceLiu98/CEDApy", + packages = find_packages(), + license = "MIT" +) \ No newline at end of file