Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
dmclain committed Nov 16, 2012
0 parents commit 9eecca3
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
@@ -0,0 +1,5 @@
*.pyc
.DS_Store
.coverage
cover
*.espressostorage
4 changes: 4 additions & 0 deletions README.md
@@ -0,0 +1,4 @@
A package to assist with running scrapy on heroku. Mainly provides a scrapyd script that respects
PORT and a ISpiderQueue implementation that uses heroku's postgres implementation

* Project page: <http://github.com/dmclain/scrapy_heroku>
2 changes: 2 additions & 0 deletions scrapy_heroku/__init__.py
@@ -0,0 +1,2 @@

__version__ = (0, 1, 0, 'dev', 0)
33 changes: 33 additions & 0 deletions setup.py
@@ -0,0 +1,33 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from setuptools import setup, find_packages

setup(
name='scrapy-heroku',
version=":versiontools:scrapy_heroku:",
description="Utilities for running scrapy on heroku",
long_description="",
keywords='scrapy, heroku',
author='Dave McLain',
author_email='dave@trainca.se',
url='https://github.com/dmclain/scrapy-heroku',
license='BSD',
include_package_data=True,
packages=find_packages(),
install_requires=[
'distribute',
'scrapy',
],
setup_requires=[
'versiontools >= 1.8',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
]
)

0 comments on commit 9eecca3

Please sign in to comment.