Skip to content

Commit 5bd2ac8

Browse files
committed
Adds dependencies, zip-safe to setup.py. Ignores .egg-info for develop installs.
1 parent d559947 commit 5bd2ac8

File tree

2 files changed

+19
-10
lines changed

2 files changed

+19
-10
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
*.pyc
22
build/
3-
.coverage
3+
.coverage
4+
*.egg-info

setup.py

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,20 @@
11
from distutils.core import setup
22

3-
setup(name='PyRes',
4-
version='0.3.0',
5-
description='Python Resque Job',
6-
author='Matt George',
7-
author_email='[email protected]',
8-
url='http://github.com/binarydud/pyres',
9-
packages=['pyres', 'resweb'],
10-
package_data={'resweb': ['templates/*.mustache','media/*']},
11-
scripts=['scripts/pyres_worker', 'scripts/pyres_web']
3+
setup(
4+
name='PyRes',
5+
version='0.3.0',
6+
description='Python Resque Job',
7+
author='Matt George',
8+
author_email='[email protected]',
9+
url='http://github.com/binarydud/pyres',
10+
packages=['pyres', 'resweb'],
11+
package_data={'resweb': ['templates/*.mustache','media/*']},
12+
scripts=['scripts/pyres_worker', 'scripts/pyres_web'],
13+
zip_safe = True,
14+
install_requires=[
15+
'simplejson>=2.0.9',
16+
'itty>=0.6.2',
17+
'redis>=0.6.0',
18+
'pystache>=0.1.0'
19+
],
1220
)

0 commit comments

Comments
 (0)