update README

This commit is contained in:
TerenceLiu98 2021-05-27 17:39:30 +08:00
parent 8eea00d9bf
commit 70a4cf2fe4
2 changed files with 18 additions and 1 deletions

View File

@ -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

17
setup.py Normal file
View File

@ -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"
)