-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
24 lines (23 loc) · 915 Bytes
/
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
from setuptools import setup, find_packages
setup(
name="kiwoom_api_handler",
version="1.0.10",
description="a package for hanlding Kiwoom OPEN API+ ActiveX Control with python",
author="Donghyung Ko",
author_email="[email protected]",
license="MIT",
url="https://github.com/donghyungko/kiwoom_api_handler.git",
download_url="https://github.com/DonghyungKo/kiwoom_api_handler/archive/master.zip",
install_requires=["pandas==0.25.1", "PyQt5==5.14.1"],
packages=find_packages(exclude=[]),
keywords=["Kiwoom", "Kiwoom OPEN API+", "Kiwoom API", "키움증권"],
python_requires=">=3.6",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
package_data={},
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)