python-ox/setup.py
2014-10-02 08:34:42 +02:00

63 lines
2 KiB
Python

#!/usr/bin/env python
# vi:si:et:sw=4:sts=4:ts=4
# encoding: utf-8
try:
from setuptools import setup
except:
from distutils.core import setup
def get_version():
import os
import re
info = os.path.join(os.path.dirname(__file__), '.bzr/branch/last-revision')
__version = os.path.join(os.path.dirname(__file__), 'ox/__version.py')
changelog = os.path.join(os.path.dirname(__file__), 'debian/changelog')
if os.path.exists(info):
f = open(info)
rev = int(f.read().split()[0])
f.close()
if rev:
version = u"2.1.%s"%rev
with open(__version, 'w') as fd:
fd.write('VERSION="%s"'%version)
return version
elif os.path.exists(__version):
with open(__version) as fd:
data = fd.read().strip().split('\n')[0]
version = re.compile('VERSION="(.*)"').findall(data)
if version:
version = version[0]
return version
elif os.path.exists(changelog):
f = open(changelog)
head = f.read().strip().split('\n')[0]
f.close()
rev = re.compile('\d+\.\d+\.(\d+)').findall(head)
if rev:
return u'2.1.%s'%rev[0]
return u'2.1.x'
setup(
name="ox",
version=get_version() ,
description="python-ox - the web in a dict",
author="0x2620",
author_email="0x2620@0x2620.org",
url="http://code.0x2620.org/python-ox",
download_url="http://code.0x2620.org/python-ox/download",
license="GPLv3",
packages=['ox', 'ox.django', 'ox.django.api', 'ox.torrent', 'ox.web'],
install_requires=['six', 'chardet', 'feedparser'],
keywords = [
],
classifiers = [
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)