Skip to content

Instantly share code, notes, and snippets.

@wzpan
Created August 19, 2013 08:28
Show Gist options
  • Select an option

  • Save wzpan/6266839 to your computer and use it in GitHub Desktop.

Select an option

Save wzpan/6266839 to your computer and use it in GitHub Desktop.
Python - setup.py
from distutils.core import setup
setup(
name = "fibonacci",
packages = ["fib"],
version = "1.0",
description = "An generator for fibonacci series",
author = "Joseph Pan",
author_email = "cs.wzpan@gmail.com",
url = "http://hahack.com/",
download_url = "",
keywords = ["fibonacci"],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Linguistic",
],
long_description = """
Put a long description here.
"""
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment