summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorKenneth Reitz <me@kennethreitz.com>2011-02-17 16:31:52 -0500
committerKenneth Reitz <me@kennethreitz.com>2011-02-17 16:31:52 -0500
commitccb29c68fa814424f9fc761fc6ab3d24779a8cc6 (patch)
treefb91e7b7526e8c80a82af527ce8d0e810f34d815 /setup.py
parente077a7f2bc8b37b36ac0da569c244f977c400254 (diff)
downloadtablib-ccb29c68fa814424f9fc761fc6ab3d24779a8cc6.tar.gz
*shutter* making everyone else happy
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py62
1 files changed, 31 insertions, 31 deletions
diff --git a/setup.py b/setup.py
index c851751..57cee3c 100644
--- a/setup.py
+++ b/setup.py
@@ -8,43 +8,43 @@ from distutils.core import setup
def publish():
- """Publish to PyPi"""
- os.system("python setup.py sdist upload")
+ """Publish to PyPi"""
+ os.system("python setup.py sdist upload")
if sys.argv[-1] == "publish":
- publish()
- sys.exit()
+ publish()
+ sys.exit()
required = []
setup(
- name='tablib',
- version='0.9.3',
- description='Format agnostic tabular data library (XLS, JSON, YAML, CSV)',
- long_description=open('README.rst').read() + '\n\n' +
- open('HISTORY.rst').read(),
- author='Kenneth Reitz',
- author_email='me@kennethreitz.com',
- url='http://tablib.org',
- packages= [
- 'tablib', 'tablib.formats',
- 'tablib.packages',
- 'tablib.packages.simplejson',
- 'tablib.packages.xlwt',
- 'tablib.packages.yaml',
- ],
- install_requires=required,
- license='MIT',
- classifiers=(
- 'Development Status :: 5 - Production/Stable',
- 'Intended Audience :: Developers',
- 'Natural Language :: English',
- 'License :: OSI Approved :: MIT License',
- 'Programming Language :: Python',
+ name='tablib',
+ version='0.9.3',
+ description='Format agnostic tabular data library (XLS, JSON, YAML, CSV)',
+ long_description=open('README.rst').read() + '\n\n' +
+ open('HISTORY.rst').read(),
+ author='Kenneth Reitz',
+ author_email='me@kennethreitz.com',
+ url='http://tablib.org',
+ packages= [
+ 'tablib', 'tablib.formats',
+ 'tablib.packages',
+ 'tablib.packages.simplejson',
+ 'tablib.packages.xlwt',
+ 'tablib.packages.yaml',
+ ],
+ install_requires=required,
+ license='MIT',
+ classifiers=(
+ 'Development Status :: 5 - Production/Stable',
+ 'Intended Audience :: Developers',
+ 'Natural Language :: English',
+ 'License :: OSI Approved :: MIT License',
+ 'Programming Language :: Python',
# 'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
- 'Programming Language :: Python :: 2.7',
- # 'Programming Language :: Python :: 3.0',
- # 'Programming Language :: Python :: 3.1',
- ),
+ 'Programming Language :: Python :: 2.7',
+ # 'Programming Language :: Python :: 3.0',
+ # 'Programming Language :: Python :: 3.1',
+ ),
)