This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private unsafe byte[] CreateGatewayRequest() | |
{ | |
var gr = new GatewayRequest(); | |
var msgHead = new MessageHeaderInComp(); | |
msgHead.BodyLen = (uint)sizeof(GatewayRequest); | |
msgHead.TemplateID = (ushort) ETIMessageType.GatewayRequest; | |
gr.MessageHeaderIn = msgHead; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Running scipy-0.14.0/setup.py -q bdist_egg --dist-dir /tmp/easy_install-iUCmvo/scipy-0.14.0/egg-dist-tmp-weG7rk | |
Traceback (most recent call last): | |
File "setup.py", line 18, in <module> | |
description='Trading software' | |
File "/usr/lib64/python2.7/distutils/core.py", line 151, in setup | |
dist.run_commands() | |
File "/usr/lib64/python2.7/distutils/dist.py", line 953, in run_commands | |
self.run_command(cmd) | |
File "/usr/lib64/python2.7/distutils/dist.py", line 972, in run_command | |
cmd_obj.run() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from setuptools import setup, find_packages | |
setup( | |
name='testpkg', | |
version='0.1', | |
packages = find_packages(), | |
include_package_data=True, | |
package_data={'': ['*.md']}, | |
url='', | |
license='', |