NB PyPI uses reST markup, quick fix to leave out long_description.
[colly.git] / setup.py
blobde292d661a6fa7ca65759499d3fd84b679dff58d
1 #!/usr/bin/env python
2 from distutils.core import setup
3 from setuptools import find_packages
4 from colly import __version__
6 setup(
7 name="colly",
8 version=__version__,
9 author="Adam J. Gamble",
10 author_email="mail@adamgamble.com",
11 description=open('README').readline(),
12 license='MIT',
13 long_description='',
14 packages=['colly', 'colly.commands'],
15 url="https://github.com/gamb/colly",
16 include_package_data=True,
17 entry_points = {
18 'console_scripts': [
19 'colly = colly:main'
22 install_requires = [
23 'simplejson'
25 classifiers=[
26 'Intended Audience :: Developers',
27 'License :: OSI Approved :: MIT License',
28 'Programming Language :: Python',
29 'Programming Language :: Python :: 2.6',
30 'Programming Language :: Python :: 2.7',
31 'Topic :: Software Development :: Libraries :: Python Modules',
32 'Topic :: Text Processing :: Filters'