Scrython/setup.py

21 lines
665 B
Python
Raw Normal View History

from setuptools import setup
readme = ''
with open('README.md') as f:
readme = f.read()
2018-01-11 01:14:33 +00:00
setup(
name='scrython',
packages=['scrython', 'scrython.cards', 'scrython.rulings', 'scrython.catalog', 'scrython.sets', 'scrython.symbology'],
2018-03-01 02:35:55 +00:00
version='1.3.0',
description='A wrapper for using the Scryfall API.',
2018-02-06 04:19:56 +00:00
long_description=readme,
2018-01-11 01:14:33 +00:00
url='https://github.com/NandaScott/Scrython',
download_url='https://github.com/NandaScott/Scrython/archive/0.1.0.tar.gz',
2018-01-11 01:14:33 +00:00
author='Nanda Scott',
author_email='nanda1123@gmail.com',
2018-01-11 01:14:33 +00:00
license='MIT',
keywords=['Scryfall', 'magic', 'the gathering', 'scrython', 'wrapper'],
2018-03-01 02:35:55 +00:00
install_requires=['aiohttp', 'asyncio', 'threading']
)