15 lines
374 B
Python
15 lines
374 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,
|
|
test_suite = "nose.collector",
|
|
tests_require = ["nose"],
|
|
)
|