Skip to content

Commit

Permalink
Merge pull request #3 from odra/better-dependencies
Browse files Browse the repository at this point in the history
added requirements.txt and setup.py file
  • Loading branch information
aaronlevy authored Feb 6, 2017
2 parents f45048d + a5462a1 commit fc09cd9
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
gevent==1.1.2
greenlet==0.4.11
13 changes: 13 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/usr/bin/env python
from setuptools import setup, find_packages


setup(
name='apnsmock',
version='0.1.0',
install_requires=[
'gevent==1.1.2',
'greenlet==0.4.11'
],
scripts=['apnsmock']
)

0 comments on commit fc09cd9

Please sign in to comment.