You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
415 B
19 lines
415 B
try: |
|
from setuptools import setup |
|
except ImportError: |
|
from distutils.core import setup |
|
|
|
config = { |
|
'description': 'Super awesome Tic Tac Toe game', |
|
'author': 'Magnus Walbeck', |
|
'url': '', |
|
'download_url': '', |
|
'author_email': 'mw@mwalbeck.org', |
|
'version': '0.1', |
|
'install_requires': [''], |
|
'packages': ['tictactoe'], |
|
'scripts': [], |
|
'name': 'tictactoe' |
|
} |
|
|
|
setup(**config)
|
|
|