Skip to content

Commit

Permalink
New version
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Kessinger committed Sep 17, 2017
1 parent 988d54c commit 4c7c591
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 7 deletions.
31 changes: 25 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,25 @@ def run_tests(self):
]


with open('requirements.txt', 'r') as fd:
requires = [x for x in fd.readlines()]

requires = [
"aiobotocore>=0.4.5",
"paco>=0.1.11",
"retrying>=1.3.3",
"pygtrie>=2.2",
"six>=1.10.0",
]

with open('test_requirements.txt', 'r') as fd:
test_requirements = [x for x in fd.readlines()]
test_requirements = [
"moto",
"pytest",
"requests",
"flask",
"attrs",
"iso8601==0.1.12",
"pytest-asyncio",
"pystrainer==1.3.1",
"simpleflake",
]

with open('ssshelf/__init__.py', 'r') as fd:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
Expand All @@ -67,7 +80,13 @@ def run_tests(self):
author_email='voidfiles@gmail.com',
url='http://github.com/voidfiles/ssshelf',
packages=packages,
package_data={'': ['LICENSE'], 'ssshelf': []},
package_data={
'': [
'LICENSE',
'*.txt',
],
'ssshelf': []
},
package_dir={
'ssshelf': 'ssshelf',
},
Expand Down
3 changes: 2 additions & 1 deletion ssshelf/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
__version__ = "0.0.1"
__version__ = "0.0.2"

0 comments on commit 4c7c591

Please sign in to comment.