33 lines
752 B
Python
33 lines
752 B
Python
#!/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",
|
|
author="0x",
|
|
author_email="code@0xdb.org",
|
|
url="http://code.0xdb.org/ox",
|
|
download_url="http://code.0xdb.org/ox/download",
|
|
license="GPLv3",
|
|
packages=find_packages(),
|
|
zip_safe=False,
|
|
install_requires=[
|
|
'oxutils',
|
|
'feedparser',
|
|
'beautifulsoup',
|
|
],
|
|
keywords = [
|
|
],
|
|
classifiers = [
|
|
'Development Status :: 3 - Alpha',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python',
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
],
|
|
)
|
|
|