setup.py 576 B

123456789101112131415161718192021222324252627282930
  1. #!/usr/bin/python
  2. """
  3. Installation script.
  4. """
  5. from setuptools import setup
  6. setup(
  7. name='tama',
  8. version='0.1',
  9. description='command line tamagotchi-like game',
  10. url='https://notabug.org/dog_shoes/tama',
  11. author='dogfeet',
  12. author_email='dogfeet@pm.me',
  13. license='MIT',
  14. packages=['tama'],
  15. install_requires = [
  16. 'inflect==0.2.5',
  17. 'colorama==0.3.9',
  18. 'six',
  19. 'python-Levenshtein'
  20. ],
  21. zip_safe=False,
  22. entry_points = {
  23. 'console_scripts': [
  24. 'tama=tama.tui:main',
  25. ]
  26. },
  27. )