33 lines
803 B
Python
33 lines
803 B
Python
#!/usr/bin/env python
|
|
# vi:si:et:sw=4:sts=4:ts=4
|
|
# encoding: utf-8
|
|
from setuptools import setup, find_packages
|
|
|
|
import os
|
|
|
|
setup(
|
|
name="oxweb",
|
|
version="0.1",
|
|
description="collection of scrapers for various websites",
|
|
author="0x",
|
|
author_email="code@0xdb.org",
|
|
url="http://code.0xdb.org/oxweb",
|
|
download_url="http://code.0xdb.org/oxweb/download",
|
|
license="GPLv3",
|
|
packages=find_packages(),
|
|
zip_safe=False,
|
|
install_requires=[
|
|
'oxlib',
|
|
'feedparser',
|
|
'beautifulsoup',
|
|
],
|
|
keywords = [
|
|
],
|
|
classifiers = [
|
|
'Development Status :: 3 - Alpha',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python',
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
],
|
|
)
|
|
|