31 lines
718 B
Python
31 lines
718 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",
|
||
|
|
||
|
# uncomment the following lines if you fill them out in release.py
|
||
|
description="collection of scrapers for various websites",
|
||
|
author="bot",
|
||
|
author_email="bot@0xdb.org",
|
||
|
url="http://ox.0xdb.org",
|
||
|
download_url="http://ox.0xdb.org/download",
|
||
|
license="GPL",
|
||
|
packages=find_packages(),
|
||
|
zip_safe=False,
|
||
|
keywords = [
|
||
|
],
|
||
|
classifiers = [
|
||
|
'Development Status :: 3 - Alpha',
|
||
|
'Operating System :: OS Independent',
|
||
|
'Programming Language :: Python',
|
||
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
||
|
],
|
||
|
)
|
||
|
|