forked from toomore/grs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 1.35 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
long_description = open('./README.rest', 'r').read()
description = '台灣上市股票價格擷取(Fetch TWSE stock data)' + \
'含即時盤、台灣時間轉換、開休市判斷。'
setup(name='grs',
version='0.2.0',
description=description,
long_description=long_description,
author='Toomore Chiang',
author_email='[email protected]',
url='https://github.com/toomore/grs',
packages=['grs'],
include_package_data=True,
license='MIT',
keywords="stock taiwan taipei twse 台灣 股市 台北 即時",
install_requires=['python-dateutil==1.5'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: Chinese (Traditional)',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Office/Business :: Financial :: Investment',
],
)