diff options
author | Yves Fischer <yvesf-git@xapek.org> | 2013-04-20 22:26:55 +0200 |
---|---|---|
committer | Yves Fischer <yvesf-git@xapek.org> | 2013-04-20 22:27:00 +0200 |
commit | 0fab00a2ff4fbe7c3c56b7bd2dc523eb974aba61 (patch) | |
tree | 3d8222d4e3de49172b410c3d1136dfaaa18294d0 /ebus-datastore/setup.py | |
parent | b5c71cfd18eb145acb72d0a9b58c5b10fbeac74d (diff) | |
download | ebus-alt-0fab00a2ff4fbe7c3c56b7bd2dc523eb974aba61.tar.gz ebus-alt-0fab00a2ff4fbe7c3c56b7bd2dc523eb974aba61.zip |
sachen rumgeschoben, leveldb: 32bit fix
Diffstat (limited to 'ebus-datastore/setup.py')
-rw-r--r-- | ebus-datastore/setup.py | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/ebus-datastore/setup.py b/ebus-datastore/setup.py deleted file mode 100644 index e755919..0000000 --- a/ebus-datastore/setup.py +++ /dev/null @@ -1,35 +0,0 @@ -#!/usr/bin/env python -import subprocess -from setuptools import setup, find_packages - - -version = subprocess.Popen(["git", "describe", "--tags", "--long"],stdout=subprocess.PIPE).communicate()[0].strip() -assert len(version) > 3 - - -setup( - name='ebus', - version=version, - description='Ebus Library', - author='xapek.org', - author_email='ebus@xapek.org', - url='http://xapek.org', - scripts=[ - "ebus_web.py", - ], - packages=find_packages(), - package_data={'doc':['*.txt'], 'xml':['*.xml']}, - include_package_data = True, - long_description="""ebus library""", - classifiers=[ - "Programming Language :: Python", - "Topic :: Software Development :: Libraries :: Python Modules", - "Intended Audience :: Developers", - ], - requires=[ - "bottle", - "SQLAlchemy", - "psycopg2", - ], - ) - |