diff --git a/setup.py b/setup.py index df03fc01..7805ec6a 100644 --- a/setup.py +++ b/setup.py @@ -3,17 +3,17 @@ ''' vn.py - By Traders, For Traders. -The vn.py project is an open-source quantitative trading framework -that is developed by traders, for traders. +The vn.py project is an open-source quantitative trading framework +that is developed by traders, for traders. -The project is mainly written in Python and uses C++ for low-layer +The project is mainly written in Python and uses C++ for low-layer and performance sensitive infrastructure. -Using the vn.py project, institutional investors and professional -traders, such as hedge funds, prop trading firms and investment banks, -can easily develop complex trading strategies with the Event Engine -Strategy Module, and automatically route their orders to the most -desired destinations, including equity, commodity, forex and many +Using the vn.py project, institutional investors and professional +traders, such as hedge funds, prop trading firms and investment banks, +can easily develop complex trading strategies with the Event Engine +Strategy Module, and automatically route their orders to the most +desired destinations, including equity, commodity, forex and many other financial markets. ''' @@ -31,7 +31,7 @@ def getSubpackages(name): for dirpath, _dirnames, _filenames in os.walk(name): if os.path.isfile(os.path.join(dirpath, '__init__.py')): splist.append(".".join(dirpath.split(os.sep))) - + return splist @@ -43,7 +43,7 @@ setup( license='MIT', url='http://www.vnpy.org', description='A framework for developing Quantitative Trading programmes', - long_description = __doc__, + long_description=__doc__, keywords='quant quantitative investment trading algotrading', classifiers=['Development Status :: 4 - Beta', 'Operating System :: Microsoft :: Windows :: Windows 7', @@ -60,7 +60,4 @@ setup( '*.h', '*.cpp', '*.bash', '*.txt', '*.dll', '*.lib', '*.so', '*.pyd', '*.dat', '*.ini', '*.pfx', '*.scc', '*.crt', '*.key']}, - extras_require={ - 'tq': ["tornado>=4.5.1", "sortedcontainers>=1.5.7"], - } -) + extras_require={'tq': ["tornado>=4.5.1", "sortedcontainers>=1.5.7"]})