python-oxweb/setup.py

34 lines
752 B
Python
Raw Normal View History

2008-04-28 09:52:21 +00:00
#!/usr/bin/env python
# vi:si:et:sw=2:sts=2:ts=2
# encoding: utf-8
from setuptools import setup, find_packages
import os
setup(
name="ox",
version="0.1",
description="collection of scrapers for various websites",
2008-05-07 09:45:00 +00:00
author="0x",
author_email="code@0xdb.org",
url="http://code.0xdb.org/ox",
download_url="http://code.0xdb.org/ox/download",
license="GPLv3",
2008-04-28 09:52:21 +00:00
packages=find_packages(),
zip_safe=False,
2008-05-07 09:45:00 +00:00
install_requires=[
'oxutils',
'feedparser',
'beautifulsoup',
],
2008-04-28 09:52:21 +00:00
keywords = [
],
classifiers = [
'Development Status :: 3 - Alpha',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)