forked from navdeep-G/showme
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Kenneth Reitz
committed
Sep 5, 2010
1 parent
1859820
commit 4ce9d27
Showing
1 changed file
with
37 additions
and
23 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,33 +3,47 @@ | |
|
||
import os | ||
import sys | ||
import showme | ||
|
||
from distutils.core import setup | ||
|
||
if sys.argv[-1] == 'publish': | ||
publish() | ||
sys.exit() | ||
|
||
def publish(): | ||
"""Publish to PyPi""" | ||
os.system("python setup.py sdist upload") | ||
|
||
if sys.argv[-1] == "publish": | ||
publish() | ||
sys.exit() | ||
|
||
setup(name='showme', | ||
version=showme.core.__version__, | ||
description='Painless Debugging and Inspection for Python', | ||
long_description=open('README.rst').read() + '\n\n' + open('HISTORY.rst').read(), | ||
author='Kenneth Reitz', | ||
author_email='[email protected]', | ||
url='http://github.com/kennethreitz/showme', | ||
packages=['showme'], | ||
license='MIT', | ||
classifiers = ( | ||
"Development Status :: 4 - Beta", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 2.5", | ||
"Programming Language :: Python :: 2.6", | ||
"Programming Language :: Python :: 2.7", | ||
) | ||
) | ||
setup( | ||
name='showme', | ||
version='1.0.0', | ||
description='Painless Debugging and Inspection for Python', | ||
long_description=open('README.rst').read() + '\n\n' + open('HISTORY.rst').read(), | ||
author='Kenneth Reitz', | ||
author_email='[email protected]', | ||
url='http://github.com/kennethreitz/showme', | ||
packages=['showme'], | ||
install_requires=[ | ||
'colorama>=0.1.18', | ||
'decorator>=3.2.0' | ||
], | ||
license='MIT', | ||
classifiers = ( | ||
'Development Status :: 5 - Production/Stable', | ||
'Environment :: Console', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 2.5', | ||
'Programming Language :: Python :: 2.6', | ||
'Programming Language :: Python :: 2.7', | ||
'Operating System :: MacOS :: MacOS X', | ||
'Operating System :: Unix', | ||
'Operating System :: POSIX', | ||
'Topic :: Software Development', | ||
'Topic :: Software Development :: Libraries', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
) | ||
) | ||
|
||
|