forked from nmbzkq/TradeInterface
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (24 loc) · 795 Bytes
/
setup.py
File metadata and controls
29 lines (24 loc) · 795 Bytes
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
#!/usr/bin/env python
# -*- coding:utf-8 -*-
#############################################
# File Name: setup.py
# Author: cb_Lian
# Mail: 787162506@qq.com
# Created Time: 2018-3-13 19:59:34
#############################################
from setuptools import setup, find_packages
setup(
name="TradeInterface",
py_modules=['TradeInterface'],
version="0.2.9",
keywords=("pip", "TradeInterface", "trade", 'haizhi'),
description="a interface of simulate-trading stocks",
long_description="a interface of simulate-trading stocks",
license="MIT Licence",
url="https://github.com/RManOfCN/TradeInterface.git",
author="Raymond Luo",
author_email="luolinhao1998@gmail.com",
packages=find_packages(),
include_package_data=True,
platforms="any"
)