-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 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
'''
Created on July 1, 2011
@author: ppa
'''
from setuptools import setup
from setupCommand import TestCommand, CleanCommand
version = '1.0.1'
setup(name='ultrafinance',
version=version,
description="python project for finance: realtime data collection, analyze, algorithmic trading",
long_description="""""",
classifiers=[
"Development Status :: 1 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
],
keywords='python, Finance, Algorithm, Trading, Realtime, QuantLib, pydispather',
author='Pan',
author_email='[email protected]',
url='http://code.google.com/p/ultra-finance/',
license='MIT',
install_not_requires=[
'hbase-thrift>=0.20.4',
'pandas',
'xlwt',
'xlrd',
'matplotlib>=1.1.0'
],
packages=['ultrafinance'],
include_package_data=True,
install_requires=[
'scipy>=0.13.0',
'numpy>=1.5.1',
'beautifulsoup4',
'SQLAlchemy>=0.8',
'mox'
],
cmdclass = {'test': TestCommand, 'clean': CleanCommand }
)