Updated setup for new release.

This commit is contained in:
2018-02-28 21:35:55 -05:00
parent c9dd5d7724
commit e05dee87a8
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ with open('README.md') as f:
setup(
name='scrython',
packages=['scrython', 'scrython.cards', 'scrython.rulings', 'scrython.catalog', 'scrython.sets', 'scrython.symbology'],
version='1.2.0',
version='1.3.0',
description='A wrapper for using the Scryfall API.',
long_description=readme,
url='https://github.com/NandaScott/Scrython',
@ -16,5 +16,5 @@ setup(
author_email='nanda1123@gmail.com',
license='MIT',
keywords=['Scryfall', 'magic', 'the gathering', 'scrython', 'wrapper'],
install_requires=['aiohttp', 'asyncio']
install_requires=['aiohttp', 'asyncio', 'threading']
)