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.
11 lines
333 B
11 lines
333 B
#! /usr/bin/env python |
|
|
|
from distutils.core import setup |
|
|
|
setup(name='WordChallenge', |
|
version='0.1', |
|
description='100(ish) word challenge', |
|
author='Gergely Polonkai', |
|
author_email='gergely@polonkai.eu', |
|
url='https://github.com/gergelypolonkai/word-challenge', |
|
packages=['wordchallenge', 'words'])
|
|
|