Skip to content

Commit

Permalink
Add setup.py for deployment egg creation
Browse files Browse the repository at this point in the history
prncc committed Apr 23, 2017
1 parent da32f00 commit 4c677de
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions steam/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/usr/bin/env python

from setuptools import setup, find_packages

setup(
name = 'steam-scraper',
version = '0.9.2',
packages = find_packages(),
entry_points = {'scrapy': ['settings = steam.settings']},
install_requires=[
'scrapy',
'smart_getenv',
'botocore'
]
)

0 comments on commit 4c677de

Please sign in to comment.