python-ox/setup.py

40 lines
1 KiB
Python
Raw Normal View History

2008-04-27 16:54:37 +00:00
#!/usr/bin/env python
2008-06-19 09:21:21 +00:00
# vi:si:et:sw=4:sts=4:ts=4
2008-04-27 16:54:37 +00:00
# encoding: utf-8
try:
from setuptools import setup
except:
from distutils.core import setup
def get_bzr_version():
import os
2011-10-07 15:42:55 +00:00
info = os.path.join(os.path.dirname(__file__), '.bzr/branch/last-revision')
if os.path.exists(info):
f = open(info)
rev = int(f.read().split()[0])
f.close()
2011-10-08 08:29:20 +00:00
if rev:
return u'%s' % rev
return u'unknown'
2008-04-27 16:54:37 +00:00
setup(
2010-07-07 22:34:04 +00:00
name="ox",
2012-09-07 01:57:05 +00:00
version="2.1.%s" % get_bzr_version() ,
2010-09-03 21:19:19 +00:00
description="python-ox - the web in a dict",
2010-09-04 11:05:33 +00:00
author="0x2620",
author_email="0x2620@0x2620.org",
2010-07-07 22:34:04 +00:00
url="http://code.0x2620.org/python-ox",
download_url="http://code.0x2620.org/python-ox/download",
2008-06-19 09:21:21 +00:00
license="GPLv3",
2010-11-26 14:02:14 +00:00
packages=['ox', 'ox.django', 'ox.torrent', 'ox.web'],
install_requires=['chardet', 'feedparser'],
2008-06-19 09:21:21 +00:00
keywords = [
],
classifiers = [
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)
2008-04-27 16:54:37 +00:00