We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello i get this error when try to install package
The text was updated successfully, but these errors were encountered:
Replace your setup.py with this
import os from setuptools import setup here = os.path.abspath(os.path.dirname(__file__)) requires = [ "pandas", "requests", "bs4", ] test_requirements = ["pytest"] about = {} with open( os.path.join(here, "edgar", "__version__.py"), mode="r", encoding="utf-8" ) as f: exec(f.read(), about) with open("README.md", mode="r", encoding="utf-8") as f: readme = f.read() setup( name=about["__title__"], version=about["__version__"], description=about["__description__"], long_description=readme, long_description_content_type="text/markdown", author=about["__author__"], author_email=about["__author_email__"], url=about["__url__"], license=about["__license__"], packages=["edgar"], keywords=["sec", "edgar", "financials", "stock", "fundamental", "analysis"], python_requires=">=3.7", install_requires=requires, tests_require=test_requirements, classifiers=[ "Intended Audience :: Developers", "Natural Language :: English", "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ], )
Sorry, something went wrong.
No branches or pull requests
Hello i get this error when try to install package
![Screenshot 2024-05-24 064656](https://private-user-images.githubusercontent.com/26629106/333642747-2805f926-fdbd-4d53-8295-ff386136356f.jpg?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk0MTMxNjAsIm5iZiI6MTczOTQxMjg2MCwicGF0aCI6Ii8yNjYyOTEwNi8zMzM2NDI3NDctMjgwNWY5MjYtZmRiZC00ZDUzLTgyOTUtZmYzODYxMzYzNTZmLmpwZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTMlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjEzVDAyMTQyMFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTQ1ZDNkMWRjMzNjYWQ2NjJlOGJhOTBlY2Y4MDg1YmFkM2QxNDkzNDU3MTRmNDBhNWRkN2M5YjA4ODM2MGMxNTQmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.Ja_0O1h_FBmUQd-sQ8mVq5HgFqZqe-FJIMuyk5v9tCc)
The text was updated successfully, but these errors were encountered: