2018-02-06 03:32:12 +00:00
|
|
|
from setuptools import setup
|
|
|
|
|
2018-02-06 02:45:57 +00:00
|
|
|
setup(
|
|
|
|
name='scrython',
|
2018-02-20 15:42:25 +00:00
|
|
|
packages=['scrython', 'scrython.cards', 'scrython.rulings', 'scrython.catalog', 'scrython.sets', 'scrython.symbology'],
|
2018-10-28 06:19:21 +00:00
|
|
|
version='1.6.0',
|
2018-02-06 02:45:57 +00:00
|
|
|
description='A wrapper for using the Scryfall API.',
|
2018-04-14 18:43:12 +00:00
|
|
|
long_description='https://github.com/NandaScott/Scrython/blob/master/README.md',
|
2018-01-11 01:14:33 +00:00
|
|
|
url='https://github.com/NandaScott/Scrython',
|
2018-02-06 02:45:57 +00:00
|
|
|
download_url='https://github.com/NandaScott/Scrython/archive/0.1.0.tar.gz',
|
2018-01-11 01:14:33 +00:00
|
|
|
author='Nanda Scott',
|
2018-02-06 03:32:12 +00:00
|
|
|
author_email='nanda1123@gmail.com',
|
2018-01-11 01:14:33 +00:00
|
|
|
license='MIT',
|
2018-02-06 03:32:12 +00:00
|
|
|
keywords=['Scryfall', 'magic', 'the gathering', 'scrython', 'wrapper'],
|
2018-03-01 04:20:28 +00:00
|
|
|
install_requires=['aiohttp', 'asyncio']
|
2018-02-06 02:45:57 +00:00
|
|
|
)
|