diff options
author | Ebus-at-dockstar <ebus@dockstar> | 2014-07-26 19:57:28 +0200 |
---|---|---|
committer | Ebus-at-dockstar <ebus@dockstar> | 2014-07-26 19:57:28 +0200 |
commit | 773093acabfb84b88c37bb0342d6a8d4a6f8267a (patch) | |
tree | eed343d56e36dfcc87bfc0e81af762cbed5938d7 /heap/ebus-datastore/setup.py | |
parent | d624ed7b00203ec3beb3337a44ec1cf8075df453 (diff) | |
download | ebus-alt-773093acabfb84b88c37bb0342d6a8d4a6f8267a.tar.gz ebus-alt-773093acabfb84b88c37bb0342d6a8d4a6f8267a.zip |
move ebus-datastore to heap
Diffstat (limited to 'heap/ebus-datastore/setup.py')
-rw-r--r-- | heap/ebus-datastore/setup.py | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/heap/ebus-datastore/setup.py b/heap/ebus-datastore/setup.py new file mode 100644 index 0000000..e755919 --- /dev/null +++ b/heap/ebus-datastore/setup.py @@ -0,0 +1,35 @@ +#!/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", + ], + ) + |