blob: 8ac1344c6ebd10eb8e270a190260890f595ba479 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name='minesweeper-py',
version='1.0.0',
description=u'A command line minesweeper game',
long_description=open('README.rst').read(),
license='GPLv3',
author=u'Ton van der Lee',
author_email='t0m.vd.l33@gmail.com',
url='http://github.com/tomvanderlee/minesweeper-py',
packages= find_packages(),
entry_points={
'console_scripts': [
'minesweeper-py = minesweeper.__main__:main',
]
}
)
|