You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I got this error when I tried to install using PIP:
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "", line 1, in
File "C:\Users\molin\AppData\Local\Temp\pip-req-build-d6nmy_zc\setup.py", line 17
extras_require={
^
SyntaxError: invalid syntax
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in C:\Users\molin\AppData\Local\Temp\pip-req-build-d6nmy_zc\
I believe this is a parsing error, missing commas between setuptools.setup parameters. Would this (added/removed some commas) work?:
setuptools.setup(
name="bloomberg_py_wrapper",
version="0.0.1",
author="tebbb",
author_email="",
description="A Python Wrapper to simplify the use of Bloomberg's API",
url="https://github.com/tebbb/bloomberg_py_wrapper",
packages=[bloomberg_py_wrapper],
install_requires=[
"pandas",
"blpapi",
"signal",
"datetime"
],
extras_require={
"Asynchronous": ["threading"],
"Subscribtion": ["threading"]
},
classifiers=[
"Programming Language :: Python :: 2.7",
"License :: OSI Approved :: GNUv3",
"Operating System :: OS Independent",
]
)
The text was updated successfully, but these errors were encountered:
Hi,
I got this error when I tried to install using PIP:
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "", line 1, in
File "C:\Users\molin\AppData\Local\Temp\pip-req-build-d6nmy_zc\setup.py", line 17
extras_require={
^
SyntaxError: invalid syntax
Command "python setup.py egg_info" failed with error code 1 in C:\Users\molin\AppData\Local\Temp\pip-req-build-d6nmy_zc\
I believe this is a parsing error, missing commas between setuptools.setup parameters. Would this (added/removed some commas) work?:
setuptools.setup(
name="bloomberg_py_wrapper",
version="0.0.1",
author="tebbb",
author_email="",
description="A Python Wrapper to simplify the use of Bloomberg's API",
url="https://github.com/tebbb/bloomberg_py_wrapper",
packages=[bloomberg_py_wrapper],
install_requires=[
"pandas",
"blpapi",
"signal",
"datetime"
],
extras_require={
"Asynchronous": ["threading"],
"Subscribtion": ["threading"]
},
classifiers=[
"Programming Language :: Python :: 2.7",
"License :: OSI Approved :: GNUv3",
"Operating System :: OS Independent",
]
)
The text was updated successfully, but these errors were encountered: