Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PIP install error #1

Open
Boris-Molina opened this issue Jan 21, 2019 · 0 comments
Open

PIP install error #1

Boris-Molina opened this issue Jan 21, 2019 · 0 comments

Comments

@Boris-Molina
Copy link

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",
]
)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant