12 lines
297 B
Python

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)