fork(1) download
  1. #!/usr/bin/env python
  2. #-*- coding:utf-8 -*-
  3.  
  4. from distutils.core import setup
  5.  
  6. import xortool
  7.  
  8. setup(name='xortool',
  9. version=xortool.__version__,
  10.  
  11. author='hellman',
  12. author_email='hellman1908@gmail.com',
  13. license="MIT",
  14.  
  15. url='https://g...content-available-to-author-only...b.com/hellman/xortool',
  16. description='Tool for xor cipher analysis',
  17. long_description=open("README.md").read(), # not in rst, but something
  18. keywords="xor xortool analysis",
  19.  
  20. packages=['xortool'],
  21. provides=['xortool'],
  22. install_requires=['docopt>=0.6.1'],
  23. scripts=["xortool/xortool", "xortool/xortool-xor"],
  24.  
  25. classifiers=['Development Status :: 4 - Beta',
  26. 'Intended Audience :: Science/Research',
  27. 'Intended Audience :: Information Technology',
  28. 'Natural Language :: English',
  29. 'Operating System :: OS Independent',
  30. 'Programming Language :: Python :: 2',
  31. 'License :: OSI Approved :: MIT License',
  32. 'Topic :: Scientific/Engineering :: Mathematics',
  33. 'Topic :: Security :: Cryptography',
  34. ],
  35. )
  36.  
Runtime error #stdin #stdout #stderr 0.05s 9504KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Traceback (most recent call last):
  File "prog.py", line 6, in <module>
ImportError: No module named xortool