forked from sculove/xing-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 1.16 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
# http://blog.dokenzy.com/archives/986
# https://pythonhosted.org/setuptools/setuptools.html#building-and-distributing-packages-with-setuptools
# http://python-packaging-user-guide.readthedocs.org/en/latest/distributing/#name
# http://stackoverflow.com/questions/7522250/how-to-include-package-data-with-setuptools-distribute
setup(
name="xing-plus",
version="1.0.2",
license="MIT License",
author="sculove",
author_email="[email protected]",
url="https://github.com/sculove/xing-plus",
keywords=["xing","stock","systemtrading"],
description="more easy eBEST INVESTMENT API",
long_description="xing plus supports more easy api for eBEST INVESTMENT",
classifiers=[
"Environment :: Win32 (MS Windows)",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.5",
"Natural Language :: Korean"
],
packages=find_packages(),
package_dir={"xing": "xing", "res": "xing/res"},
package_data={"xing": ["res/*.res"]},
install_requires=["pandas>=0.17.0", "ta-lib>=0.4.9"]
)