Guest User

Untitled

a guest
Jul 20th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. """Dummy file to satisfy `tox`."""
  2. from distutils.core import setup
  3.  
  4. NAME = 'dummy-package-for-tox'
  5. VERSION = '0.0.1'
  6. LICENSE = 'MIT'
  7. AUTHOR = "me"
  8. AUTHOR_EMAIL = "me@laptop"
  9.  
  10. setup(
  11. name=NAME,
  12. version=VERSION,
  13. license=LICENSE,
  14. author=AUTHOR,
  15. author_email=AUTHOR_EMAIL,
  16. maintainer=AUTHOR,
  17. maintainer_email=AUTHOR_EMAIL,
  18. )
Add Comment
Please, Sign In to add comment