forked from hezhenke/quantdata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
21 lines (20 loc) · 770 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- coding:utf-8 -*-
from setuptools import setup, find_packages
import quantdata
setup(
name='quantdata',
version=quantdata.__version__,
description='A utility for crawling Quotes data of China stocks',
author='jacob he',
license='BSD',
keywords='China stock data',
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',
'License :: OSI Approved :: BSD License'],
packages=['quantdata','quantdata.stock','quantdata.db','quantdata.script','quantdata.data','quantdata.analyze'],
package_data={'': ['*.csv']},
)