This commit is contained in:
Josh Holtrop 2016-06-17 11:16:50 -04:00
commit be46cc1f1b
3 changed files with 17 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
/build/
/dist/
*.pyc
/*.egg-info/

2
funniest/__init__.py Normal file
View File

@ -0,0 +1,2 @@
def joke():
return "The Call of Ktulu"

11
setup.py Normal file
View File

@ -0,0 +1,11 @@
from setuptools import setup
setup(name = "funniest",
version = "0.0.1",
description = "my desc",
url = "http://the.url/",
author = "Me Myself",
author_email = "flyingcircus@example.com",
license = "MIT",
packages = ["funniest"],
zip_safe = False)