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
When I tried the following option python setup.py install it gives the following error
/usr/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown distribution option: 'install_requires' warnings.warn(msg) running install running build running install_egg_info Removing /usr/local/lib/python2.7/dist-packages/JSMon-1.0.egg-info Writing /usr/local/lib/python2.7/dist-packages/JSMon-1.0.egg-info
In setup.py the following is the code
#!/usr/bin/env python from setuptools import setup, find_packages
setup( name='JSMon', packages=find_packages(), version='1.0', description="A python script that monitors JavaScript files.", long_description=open('README.md').read(), author='r0bre', author_email='mail@r0b.re', license='MIT', url='https://github.com/robre/jsmon', install_requires=['requests', 'jsbeautifier', 'python-decouple','slackclient'], )
What's the problem ?
Thanks in advance !! Yukesh
The text was updated successfully, but these errors were encountered:
You have another way to run the script jsmon.py 💯
jsmon.py
First step you should install libs : pip install difflib pip install jsbeautifier pip install decouple pip install requests pip install python-decouple pip install slackclient
pip install difflib
pip install jsbeautifier
pip install decouple
pip install requests
pip install python-decouple
pip install slackclient
The second step running the jsmon.py : python(3 or 2) jsmon.py -> python3 jsmon.py
python(3 or 2) jsmon.py
python3 jsmon.py
Sorry, something went wrong.
No branches or pull requests
When I tried the following option python setup.py install it gives the following error
/usr/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown distribution option: 'install_requires'
warnings.warn(msg)
running install
running build
running install_egg_info
Removing /usr/local/lib/python2.7/dist-packages/JSMon-1.0.egg-info
Writing /usr/local/lib/python2.7/dist-packages/JSMon-1.0.egg-info
In setup.py the following is the code
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='JSMon',
packages=find_packages(),
version='1.0',
description="A python script that monitors JavaScript files.",
long_description=open('README.md').read(),
author='r0bre',
author_email='mail@r0b.re',
license='MIT',
url='https://github.com/robre/jsmon',
install_requires=['requests', 'jsbeautifier', 'python-decouple','slackclient'],
)
What's the problem ?
Thanks in advance !!
Yukesh
The text was updated successfully, but these errors were encountered: