Metadata-Version: 2.1
Name: herokuify_scrapyd
Version: 1.0
Summary: A package to deploy scrapy spiders to Heroku
Home-page: https://github.com/pypa/sampleproject
Author: Ahmed Rafik Djerah
Author-email: djerahahmedrafik@mail.com
License: UNKNOWN
Description: # Herokuify-Scrapyd
        This package was mainly developed to make deploying Scrapy spiders to Heroku easy. 
        ## Features
         - Support Python >=3.6 and Scrapy 1.5.1
         - Support running scrapyd locally
         - Support running scrapyd on Heroku
        ## Configuration
        On your scrapy.cfg file copy & paste the following:
        ````ini
        [scrapyd]
        application = herokuify_scrapyd.app.application
        
        [deploy]
        
        url = http://<HEROKU_APP_NAME>.herokuapp.com
        project = <PROJECT_NAME>
        username = <HEROKU_EMAIL>
        password = <HEROKU_PASSWORD>
        ````
        Now on you project root directory create a file called Procfile and inside it write: 
        ````ini 
        web: scrapyd
        ````
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
