-
Notifications
You must be signed in to change notification settings - Fork 241
/
setup.py
32 lines (29 loc) · 1.01 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
from setuptools import setup, find_packages
from pykrx import __version__
# main_ns = {}
# ver_path = convert_path('pykrx/version.py')
# with open(ver_path) as ver_file:
# exec(ver_file.read(), main_ns)
with open("README.md", "r", encoding='UTF-8') as fh:
long_description = fh.read()
setup(
name='pykrx',
version=__version__,
description='KRX data scraping',
url='https://github.com/liante0904/pykrx',
author='Brayden Jo, Jonghun Yoo',
author_email=('[email protected], '
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=['requests', 'pandas', 'datetime', 'numpy', 'xlrd',
'deprecated', 'multipledispatch', 'matplotlib'],
license='MIT',
packages=find_packages(include=['pykrx', 'pykrx.*', 'pykrx.stock.*']),
package_data={
'pykrx': ['*.ttf'],
},
python_requires='>=3',
zip_safe=False
)