-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
50 lines (39 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# coding:utf8
from setuptools import setup
import vob
long_desc = """
mecury
===============
* Backing test and trading platform for quantitative investment of financial asset
Installation
--------------
Upgrade
---------------
Quick Start
--------------
"""
setup(
name='mecury',
version=vob.__version__,
description='A system for investing financial asset',
long_description=long_desc,
author='ruyiqf',
author_email='[email protected]',
license='BSD',
url='https://github.com/ruyiqf/Mercury.git'
keywords='Quantitative financial investment',
install_requires=[
'click',
'tarfile',
'shultil',
'bcolz',
],
classifiers=['Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: BSD License'],
packages=['vob'],
package_data={'': ['*.json'], 'config': ['*.json']},
)