summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichele Simionato <michele.simionato@gmail.com>2010-05-22 14:45:42 +0200
committerMichele Simionato <michele.simionato@gmail.com>2010-05-22 14:45:42 +0200
commit8bba34814b0107d3df67c594182a6acca0e4e6c9 (patch)
treed68df2669735ecac270faf9741ac0348df3a7261
parentfec1b26aac736107a3549dca01cedff5e6988467 (diff)
downloadmicheles-8bba34814b0107d3df67c594182a6acca0e4e6c9.tar.gz
Removed an useless setup.py file
-rw-r--r--setup.py39
1 files changed, 0 insertions, 39 deletions
diff --git a/setup.py b/setup.py
deleted file mode 100644
index 8ace8d7..0000000
--- a/setup.py
+++ /dev/null
@@ -1,39 +0,0 @@
-try:
- from setuptools import setup
-except ImportError:
- from distutils.core import setup
-
-VERSION = '0.1.0'
-
-## DEPENDENCIES decorator
-
-if __name__ == '__main__':
- try:
- docfile = file('/tmp/documentation.html')
- except IOError: # file not found, ignore
- doc = ''
- else:
- doc = docfile.read()
- setup(name='sqlplain',
- install_requires = [
- 'decorator>=3.0.0'],
- version=VERSION,
- description='Keep SQL simple',
- long_description='</pre>%s<pre>' % doc,
- author='Michele Simionato',
- author_email='michele.simionato@gmail.com',
- url='http://pypi.python.org/pypi/sqlplain',
- license="BSD License",
- packages = ['sqlplain'],
- keywords="SQL DB API 2",
- platforms=["All"],
- classifiers=['Development Status :: 1 - Alpha',
- 'Intended Audience :: Developers',
- 'License :: OSI Approved :: BSD License',
- 'Natural Language :: English',
- 'Operating System :: OS Independent',
- 'Programming Language :: Python',
- 'Topic :: Software Development :: Libraries',
- 'Topic :: Utilities'],
- zip_safe=False)
-