-
Notifications
You must be signed in to change notification settings - Fork 2.7k
/
Copy pathsetup.py
41 lines (39 loc) · 1.23 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
33
34
35
36
37
38
39
40
41
# coding:utf8
from setuptools import setup
setup(
name="easytrader",
version="0.23.3",
description="A utility for China Stock Trade",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="shidenggui",
author_email="[email protected]",
license="BSD",
url="https://github.com/shidenggui/easytrader",
keywords="China stock trade",
install_requires=[
"requests",
"six",
"easyutils",
"flask",
"pywinauto==0.6.6",
"pillow",
"pandas",
],
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"License :: OSI Approved :: BSD License",
],
packages=["easytrader", "easytrader.config", "easytrader.utils"],
package_data={
"": ["*.jar", "*.json"],
"config": ["config/*.json"],
"thirdlibrary": ["thirdlibrary/*.jar"],
},
)