diff options
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..8ac1344 --- /dev/null +++ b/setup.py | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | #!/usr/bin/env python3 | ||
| 2 | |||
| 3 | from setuptools import setup, find_packages | ||
| 4 | |||
| 5 | setup( | ||
| 6 | name='minesweeper-py', | ||
| 7 | version='1.0.0', | ||
| 8 | description=u'A command line minesweeper game', | ||
| 9 | long_description=open('README.rst').read(), | ||
| 10 | license='GPLv3', | ||
| 11 | author=u'Ton van der Lee', | ||
| 12 | author_email='t0m.vd.l33@gmail.com', | ||
| 13 | url='http://github.com/tomvanderlee/minesweeper-py', | ||
| 14 | packages= find_packages(), | ||
| 15 | entry_points={ | ||
| 16 | 'console_scripts': [ | ||
| 17 | 'minesweeper-py = minesweeper.__main__:main', | ||
| 18 | ] | ||
| 19 | } | ||
| 20 | ) | ||
