123456789101112131415161718192021222324252627282930 |
- #!/usr/bin/python
- """
- Installation script.
- """
- from setuptools import setup
- setup(
- name='tama',
- version='0.1',
- description='command line tamagotchi-like game',
- url='https://notabug.org/dog_shoes/tama',
- author='dogfeet',
- author_email='dogfeet@pm.me',
- license='MIT',
- packages=['tama'],
- install_requires = [
- 'inflect==0.2.5',
- 'colorama==0.3.9',
- 'six',
- 'python-Levenshtein'
- ],
- zip_safe=False,
- entry_points = {
- 'console_scripts': [
- 'tama=tama.tui:main',
- ]
- },
- )
|