How to run xotes?
Hi. It isn't clear to me to how to run or install xotes.
I tried cloning the repo and running the setup.py file, but that failed.
~/src/gitjournal/xotes $ python3 setup.py [0:55:03]
Traceback (most recent call last):
File "setup.py", line 14, in <module>
with open(path.join(here, 'README'), encoding='utf-8') as f:
File "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/codecs.py", line 904, in open
file = builtins.open(filename, mode, buffering)
FileNotFoundError: [Errno 2] No such file or directory: '/Users/vishesh/src/gitjournal/xotes/README'
~/src/gitjournal/xotes $ touch README [0:55:08]
~/src/gitjournal/xotes $ python3 setup.py [0:55:20]
Traceback (most recent call last):
File "setup.py", line 18, in <module>
with open("xotes/version.py") as f:
File "/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/codecs.py", line 904, in open
file = builtins.open(filename, mode, buffering)
FileNotFoundError: [Errno 2] No such file or directory: 'xotes/version.py'
~/src/gitjournal/xotes $ touch xotes/version.py [0:55:21]
~/src/gitjournal/xotes $ python3 setup.py [0:55:43]
Traceback (most recent call last):
File "setup.py", line 23, in <module>
version = version['__version__'],
Could you please provide some instructions?