32 lines
768 B
Python
32 lines
768 B
Python
|
#!/usr/bin/env python
|
||
|
# -*- Mode: Python; -*-
|
||
|
# vi:si:et:sw=2:sts=2:ts=2
|
||
|
# encoding: utf-8
|
||
|
from setuptools import setup, find_packages
|
||
|
|
||
|
import os
|
||
|
|
||
|
setup(
|
||
|
name="scrapeit",
|
||
|
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@mailb.org",
|
||
|
#url=url,
|
||
|
#download_url=download_url,
|
||
|
#license=license,
|
||
|
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',
|
||
|
],
|
||
|
)
|
||
|
|