31 lines
777 B
Python
31 lines
777 B
Python
#!/usr/bin/env python
|
|
# vi:si:et:sw=4:sts=4:ts=4
|
|
# encoding: utf-8
|
|
from distutils.core import setup
|
|
|
|
def get_bzr_version():
|
|
import os
|
|
rev = int(os.popen('bzr revno').read())
|
|
if rev:
|
|
return u'%s' % rev
|
|
return u'unknown'
|
|
|
|
setup(
|
|
name="oxweb",
|
|
version="1.0.%s" % get_bzr_version() ,
|
|
description="collection of scrapers for the web",
|
|
author="0x",
|
|
author_email="code@0xdb.org",
|
|
url="http://code.0xdb.org/python-oxweb",
|
|
download_url="http://code.0xdb.org/oxweb/download",
|
|
license="GPLv3",
|
|
packages=['oxweb'],
|
|
keywords = [
|
|
],
|
|
classifiers = [
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python',
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
],
|
|
)
|
|
|