Doctest skeleton added.
[colly.git] / setup.py
blob861b8a95b9c32aba3d2bdbfcef8b6605ad8c69ec
1 #!/usr/bin/env python
2 from distutils.core import setup
3 from setuptools import find_packages
5 setup(
6 name="colly",
7 version="0.2.1",
8 author="Adam J. Gamble",
9 author_email="mail@adamgamble.com",
10 description=open('README').readline(),
11 license='MIT',
12 long_description='',
13 packages=['colly', 'colly.commands'],
14 url="http://repo.or.cz/w/colly.git",
15 include_package_data=True,
16 entry_points = {
17 'console_scripts': [
18 'colly = colly:main'
21 install_requires = [
22 'simplejson'
24 classifiers=[
25 'Intended Audience :: Developers',
26 'License :: OSI Approved :: MIT License',
27 'Programming Language :: Python',
28 'Programming Language :: Python :: 2.6',
29 'Programming Language :: Python :: 2.7',
30 'Topic :: Software Development :: Libraries :: Python Modules',
31 'Topic :: Text Processing',
32 'Topic :: Text Processing :: Filters'