forked from sharebook-kr/pykrx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
21 lines (19 loc) · 804 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
from distutils.util import convert_path
main_ns = {}
ver_path = convert_path('pykrx/version.py')
with open(ver_path) as ver_file:
exec(ver_file.read(), main_ns)
setup(
name = 'pykrx',
version = main_ns['__version__'],
description = 'KRX data scraping',
url = 'https://github.com/sharebook-kr/pykrx',
author = 'Brayden Jo, Jonghun Yoo',
author_email = 'brayden.jo@outlook.com, jonghun.yoo@outlook.com, pystock@outlook.com',
install_requires= ['requests', 'pandas', 'datetime', 'numpy', 'xlrd', 'deprecated'],
license = 'MIT',
packages = find_packages(include=['pykrx', 'pykrx.*', 'pykrx.stock.*']),
python_requires = '>=3',
zip_safe = False
)