Guest User

Untitled

a guest
Sep 26th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. import theanswer
  2. theanswer.theanswer()
  3.  
  4. theanwer/
  5. theanswer/
  6. __init__.py
  7. setup.py
  8.  
  9. def theanswer():
  10. return 42
  11.  
  12. if __name__ == "__main__":
  13. theanswer()
  14.  
  15. setup(name='theanswer',
  16. version='0.1',
  17. description='answer to the ultimate question',
  18. url='https://github.com/zabop/PyPIattempt',
  19. author='Pal Szabo',
  20. author_email='szabopal96@gmail.com',
  21. license='MIT',
  22. packages=['theanswer'],
  23. zip_safe=False)
  24.  
  25. def returnthis(this)
  26. return this
  27.  
  28. theanswer.returnthis(this)
  29.  
  30. theanwer/
  31. theanswer/
  32. __init__.py # containing the function theanswer
  33. returnthis/
  34. __init__.py # containing the function returnthis
Add Comment
Please, Sign In to add comment