Created
August 19, 2013 08:28
-
-
Save wzpan/6266839 to your computer and use it in GitHub Desktop.
Python - setup.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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