python-oxweb/setup.py

32 lines
752 B
Python
Raw Normal View History

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